https://github.com/angular/angular
Raw File
Tip revision: 5b9c981b6d4e4f96236858773f84750a46260986 authored by Joey Perrott on 06 January 2021, 21:13:21 UTC
release: cut the v11.0.6 release (#40328)
Tip revision: 5b9c981
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