https://github.com/angular/angular
Raw File
Tip revision: 40c138c13d17b638908999faafc9eb4cca0202fb authored by Dylan Hunn on 23 November 2022, 02:59:58 UTC
release: cut the v15.0.1 release
Tip revision: 40c138c
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