https://github.com/angular/angular
Raw File
Tip revision: cbfe6284a2cb4a0e5f8d88f833de7341d478250d authored by Jessica Janiuk on 13 April 2022, 18:27:48 UTC
release: cut the v13.3.3 release (#45614)
Tip revision: cbfe628
slots.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>
back to top