mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
17 lines
360 B
HTML
17 lines
360 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>
|