我划横线的可以举个例子吗?
来源:6-1 Vue项目预热 - 环境配置
慕的地3200337
2020-01-26
写回答
1回答
-
呀呀呀亚歌
2020-01-26
<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>
022020-01-27
相似问题