1 2 3 4 5 6 7 8 9 10 11
<template> <h2 id="vue-h2">Hasta la vista, {{ name }}</h2> </template> <script> export default { props: { name: String, }, }; </script>