https://github.com/angular/angular
Raw File
Tip revision: e726a63cdd17588ce53fb7eeaf829995ef941cc0 authored by Andrew Scott on 08 September 2021, 16:28:03 UTC
release: cut the v12.2.5 release (#43392)
Tip revision: e726a63
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