摘要:
子 <slot></slot> <slot name="abc" a="1" b=2""></slot> 父 <child> <template slot="abc" slot-scope="obj"></template> //此时这里的obj就是a,b的集合 调用时使用obj.a,obj.b < 阅读全文
摘要:
vue.use调用了传入它对象里面的install方法,并且将vue对象作为第一个参数传入 阅读全文
摘要:
父组建在调用子组建时想要使用子组建的数据 1.slot.vue <template> <div> //这里将obj赋值给row <slot :row="obj"> <h1>作用域插槽后备内容</h1> </slot> </div> </template> <script> export defaul 阅读全文
摘要:
1.DialogWin.vue文件 给slot标签添加一个name属性名称 <template> <div> <div>头部</div> <div>主体部分 //匿名插槽 <slot> <h1>这是一个后备内容,当没有内容传入这个插槽的时候,此行才会显示</h1> </slot> //具名插槽 <s 阅读全文
摘要:
1.新建一个.vue文件 DialogWin.vue文件 //在这个文件中放了一个slot占位符 <template> <div> <div>头部</div> <div> //匿名插槽 <slot> <h1>这是一个后备内容,当没有内容传入这个插槽的时候,此行才会显示</h1> </slot> <s 阅读全文
摘要:
mixin提供了一种非常灵活的方式,来分发vue组建中的可复用功能 我们只要将共用的功能以对象的方式传入mixins选项中,当组建使用mixins对象时所有mixins对象的选项都将被混入该组件本身的选项中来 1.局部混入 定义一个mixin对象 var myMixin = { created:fu 阅读全文
摘要:
1.通用写法 axios({ methods:'get/post/delete/put/patch',//请求类型 url:'',//请求地址 data:{},//请求体参数 body参数, get只有地址参数,没有请求提参数 params:{},//地址参数 最终参数会拼接到url地址上 }).t 阅读全文
摘要:
1.点击登录 2.进行预校验 3.发起post请求 4..then.catch拿到成功或者失败的结果 <template> <span>{{timerCount>0?`${timerCount}秒`:"发送验证码"}} @click="sendCode"发送验证码</span> <button @c 阅读全文