<body>
<div id=
"template"
></div>
<script>
Vue.component(
'my-component'
, {
props: [
'param'
],
template: ` <div>A custom component{{param}}</div>
`
})
new
Vue({
el:
'#template'
,
data: {
name:
'donghai'
},
components: {
'se-com'
: {
props: [
'param'
],
template: `<div>我是第二个组件{{param}}</div>`
}
},
template: ` <ol>
<tr is=
"my-component"
:param=
"name"
></tr>
<tr is=
"se-com"
:param=
"name"
></tr>
<se-com :param=
"name"
></se-com>
</ol>
`
}) </script></body>