Vue局部注册 或者全局注册 组件时,组件定义要用 分隔命名,用驼峰命名是不生效的

Vue.component('all-canuse',{
        props:['message'],
        template:'<div>{{message}}</div>'
    })

像这样

猜你喜欢

转载自www.cnblogs.com/1rookie/p/10577576.html