2
0
mirror of https://github.com/tenrok/maska.git synced 2026-06-17 19:21:21 +03:00

chore: bump deps

This commit is contained in:
Alexander Shabunevich
2025-02-01 19:01:52 +03:00
parent 2975377813
commit 07cf2efe48
4 changed files with 1414 additions and 962 deletions
+8 -4
View File
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@@ -7,11 +8,14 @@
<title>Maska Svelte Demo</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><h1>Maska demos</h1></li>
<li>
<h1>Maska demos</h1>
</li>
</ul>
<ul>
<li><a href="index.html">Vanilla JS</a></li>
@@ -27,13 +31,13 @@
<div id="app"></div>
<script type="module">
import { mount } from 'svelte'
import Demo from '../test/svelte/Demo.svelte'
new Demo({
target: document.getElementById('app')
})
mount(Demo, { target: document.getElementById('app') })
</script>
</article>
</main>
</body>
</html>