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.
OneAuth/oa/front/card.html

27 lines
374 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Card</title>
<script src='v.js'></script>
</head>
<body>
<div class="h-6 w-40 bg-green-100 flex gap-4">
<slot name="a">slot a</slot>
</div>
<div class="h-14 w-40">
<slot>
<div ref="audio"></div>
</slot>
</div>
</body>
<script>
return {
data: {a: 2}
}
</script>
</html>