21 lines
333 B
HTML
21 lines
333 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Slot Test</title>
|
|
<base href="/">
|
|
</head>
|
|
|
|
<body>
|
|
<test-card>
|
|
<span slot="card-header">TestCardTitle</span>
|
|
<p>TestCardContent</p>
|
|
<span slot="card-footer">TestCardFooter</span>
|
|
</test-card>
|
|
<script src="dist/bundle.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|