這次帶給大家如何使用vue全域與局部元件,使用vue全域與局部元件的注意事項有哪些,以下就是實戰案例,一起來看一下。
main.js入口檔案的一些常用配置, 在入口檔案上定義的public.vue為全域元件,這裡用的是pug模版.wraper 的形式相當於< p class=wraper>
—main.js檔案
**main.js入口文件的内容** import Vue from 'vue' import App from './App' import router from './router' // 引入公用组件的vue文件 他暴漏的是一个对象 import cpublic from './components/public' Vue.config.productionTip = false // 注册全局组件-要在vue的根事咧之前 // 参数 1是标签名字-string 2是对象 引入外部vue文件就相当与一个对象 Vue.component('public', cpublic) // 正常注册全局组件的时候,第二个参数应该是对象。 Vue.component('public1', { template: '正常的组件模式
' }) /* eslint-disable no-new */ // 生成vue 的根实例;创建每个组件都会生成一个vue的事咧 new Vue({ el: '#app', router, template: '', components: { App } })
—public.vue元件為定義的全域元件在任何元件裡都可以直接使用,不需要在vue實例選項components上在次定義,也不需要再次匯入檔案路徑。
**public.vue的组件内容** .wrapper slot(text="我是全局组件") {{name}}
在parent.vue元件裡,用到了public全域元件以及其他的子元件
parent.vue元件
.wrap .input-hd .title 名称: input.input(type="text",v-model="msg",placeholder="请输入正确的值",style="outline:none;") .content-detail .content-name 我是父组件的内容 children(:msg='msg', number='1') public router-link(to='/parent/children2') 第二个子组件 router-view
# children.vue是parent.vue的子組件,但是只在parent.vue作用域裡可用
.wrapper slot(text="我是子组件的text") 我是子组件的内容 .name {{ msg }} {{ number }}
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是如何使用vue全域與局部元件的詳細內容。更多資訊請關注PHP中文網其他相關文章!