mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
520 B
HTML
32 lines
520 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Index</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script type="module" src="./v.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id='app' class="flex gap-2">
|
|
<div>123</div>
|
|
<div>123</div>
|
|
<div>123</div>
|
|
<div ref="card">
|
|
<div>111</div>
|
|
<div slot="a">c1</div>
|
|
<div>333</div>
|
|
</div>
|
|
<div ref="card">
|
|
<div slot="a">c2</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<script>
|
|
let app = {a: 1}
|
|
</script>
|
|
|
|
</html>
|