热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

Vue.js组件嵌套和template外用

组件嵌套分为全局组件嵌套和局部组件嵌套组件嵌套需要将子元素写在父元素内子组件必须在父组件中注册之后才能在父组件的模板中使用全局组件嵌套 Vue.component(Father,{template:<h3>father<Son><Son&am

组件嵌套分为全局组件嵌套和局部组件嵌套

  • 组件嵌套需要将子元素写在父元素内
  • 子组件必须在父组件中注册之后才能在父组件的模板中使用

全局组件嵌套

 

Vue.component('Father',{
    template: '

father

'//这里要把子组件加进来 }) Vue.component('Son',{ template: '

son

' }) new Vue({ el: '#app', })

 

局部组件嵌套

new Vue({
    el: '#app',
    components: {
        'Father': {
            template: '
father
',//这里也要把子组件加进来,组件可以使用单标签 components: { 'Son': {//子组件必须在父组件内创建才行 template: '

Son

' } } } } })

template的外用

注意:template外用,组件模板中的第一个元素必须唯一

    
"app">
Vue.component('Hello',{
    template: '#Hello'//这里的作用相当于根实例中的el:'app' ;作用一样,都是挂载
})

new Vue({
    el: '#app',
})

 

摘自:

https://blog.csdn.net/zhangyuea/article/details/89421424


推荐阅读
author-avatar
我的老公是个兵
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有