solt插槽的使用。
Posted l8l8
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了solt插槽的使用。相关的知识,希望对你有一定的参考价值。
在组件内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插槽的使用。的主要内容,如果未能解决你的问题,请参考以下文章