solt插槽的使用。
阿新 • • 發佈:2018-06-08
this cti -a AR 匹配 head color one ash
在組件內template中使用 <slot name=‘header‘></slot> 在頁面內 直接添加標簽 如 <hs><h1 slot=‘header‘></h1></hs> 用來匹配這些元素。
<slot></slot> 幫助在組件內進行 占位 具有name屬性 用來進行區別他們的位置。
this.$router.push({name:home,params:{id:5555}});編碼式路由
router 可以有name屬性用來起名
router具有path 屬性 components屬性 必須填寫的兩個屬性。
let router = new VueRouter({ mode:‘hash‘//帶#號 ‘history‘ //類似於後端接口 LinkActiveClass:‘class名‘; //動態切換, 默認router-link-active 就自帶動態切換。 routers:[ { path:‘/home‘; name:‘Home‘, components:{ template:‘‘ } }, {}, {} ] });
solt插槽的使用。