在项目处理过程有些模板要每次都调用,就可以直接全部加载与按需求情况而加载
1. 全局加载某个自定义的vue模板写法(一定要写在根目录的main.js里面)
import qwbmtopcont from "./components/qwbm/pub_top_cont1.vue" //跟某个页面单独加载模板写法一样
Vue.component('qwbm_pub_topcont',qwbmtopcont) //这里要注意
qwbmtopcont 可以随便定义,只要下面也调用qwbmtopcont就行
qwbm_pub_topcont 是在页面中调用的模板组件名称
2. 某个页面单独加载某个自定义的vue模板写法(这个只要写在对应的页面中就行了)
import qwbm_pub_topcont from '@/components/qwbm/pub_top_cont1.vue' //先挂载模板,注意@为你文件存放地址
components: {
qwbm_pub_topcont //注册模板,方便一会调用
},
页面调用方法
1. 没有数据调用方式
<qwbm_pub_topcont></qwbm_pub_topcont>
2. 有数据的调用方式
<qwbm_pub_topcont :pubtopcontdata="pubtopcontdata"></qwbm_pub_topcont>