https://github.com/angular/angular
Raw File
Tip revision: 07a0b87a4c1e032c92d5596ce7a17b74a87e04e3 authored by Pawel Kozlowski on 10 July 2024, 12:57:48 UTC
release: cut the v18.1.0 release
Tip revision: 07a0b87
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