Vue的脚手架

脚手架配置

脚手架文档:Vue CLI

npm config set registry https://registry.npm.taobao.org

vue.config.js配置选项:

配置参考 | Vue CLI

ref选项

ref和id类似,给标签打标识。

document.getElementById('btn');

this.$ref.btn;

父子组件间通信

App.vue 加上冒号之后,18就成了一个表达式。 传递到Student中,就可以进行运算了。

<Student name="李四" age="18"/>
<Student name="李四" :age="18"/>  

Student.vue,接受的数据,相当于跑到了VC中的data里边。

props:['name','age']
props:{name:String,age:Number,sex:String
}
props:{name:{type:String,required:true,default:''}
}

props收到的属性,是不建议修改的,控制台会报错的。

data(){return{myAge:this.age}
}

但是将收到的属性值,赋值到新的字段中,是可以支持修改的。

引入混合js[复用配置]

mixin.js
export const hunhe = {methods:{showName(){//....}},mounted(){//....}
}

引入

import {hunhe} from '../mixin'
export default{name:'Student',data(){return{}},mixins:[hunhe],
}

全局混合,不建议用

import {hunhe,hunhe2} from './mixin'
Vue.mixin(hunhe)

插件plugins

plugins.js
export default{install(Vue){console.log('aaa');Vue.filter(...)}
}
main.js 在new Vue({})上边引入
import plugins from './plugins'
Vue.use(plugins)

scoped作用域

<style lang="less" scoped>
....
</style>

查看npm库版本

npm view webpack versionsnpm i less-loader@7

子传父组件通信-v1

App.vue
methods:{receive(x){}
}
<Myheader :receive="receive"/>
//==============================================================
MyHeader.vue
props:['receive'],
methods:{add(e){this.reveive(e.target.value);}
}

统计数量

computed:{doneTotal(){let i = 0;this.todos.forEach((todo)=>{if(todo.done) i++;})return i;}
}
const x = this.todus.reduce((pre,current)=>{return pre+(current.todo ? 1: 0);
},0); //0是传入的初始值 {}里边的逻辑,数组有多少个,就调用多少次  
第二次调用时,pre就是第一次调用函数的返回值
current就是每一个todo项
x就是计算todo项为true的统计
computed:{doneTotal(){return this.todos.reduce((pre,todo)=>pre+(todo.done?1:0),0);}
}

浏览器的本地存储

localstorage也可以用在移动端开发中

**组件的自定义事件通信**

1、通过父组件给子组件传递函数类型的props实现,子给父传递数据

2、绑定自定义事件传递给父组件

//自定义事件,给Student所在的vc绑定事件
App.vue
<Student v-on:pshdhx="demo"/> 
methods:{demo(name){console.log('demo被调用了',name)}
}
Student.vue
<button @click="sendStudentName">把学生名传递给app</button>
methods:{sendStudentName(){this.$emit('pshdhx',this.name) //触发Student组件实例的pshdhx事件}
}

3、使用ref来替换

//使用ref来替换  <Student v-on:pshdhx="demo"/>  <Student @pshdhx.once="demo"/>
App.vue
<Student ref="student"/> 
methods:{getStudentName(name,...params){ //params是一个数组console.log('App.vue收到了Student.vue传递过来的name值',name,params);}
}
mounted:{this.$refs.student.$on('pshdhx',this.getStudentName);this.$refs.student.$once('pshdhx',this.getStudentName);
}

解绑自定义事件

//方法区域
unbind(){this.$off('pshdhx'); //只适用于解绑一个this.$off(['pshdhx','demo2']); //用数组来解绑多个自定义事件this.$off();//解绑所有
}

箭头函数没有自己的this,所以就往外找。

自定义组件要想使用Vue事件

<Student @click.native="showInfo"/>
//如果不加.native,它就是一个自定义事件。

全局事件总线

任意组件之间的通信。

傀儡VueComponent,就是x

//App.vue
const Demo = Vue.extend({})
const d = new Demo();
Vue.prototype.x = d;//School.vue
mounted(){this.x.$on('hello',(data)=>{console.log('我是school组件,收到了数据',data);})
}
//Student.vue
methods:{sendStudentName(){this.x.$emit('hello',666);}
}

构建傀儡组件2 ,就是x

new Vue({el:'#app',render:h=>h(App),beforeCreate(){Vue.prototype.x = this}
})

x就是$bus了。

$bus很累了,所以销毁组件的时候,就要关闭

beforeDestory(){this.$bus.off('hello');
}

消息订阅与发布

npm i pubsub-js

School.vue
import pubsub from 'pubsub-js'
mounted:{this.pubid = pubsub.subscribe('hello',function(name,data){console.log('有人发布了hello消息,hello的回调执行了',data)})
}
Student.vue
import pubsub from 'pubsub-js'
methods:{sendStudentName(){pubsub.publish('hello',666);}
}

取消订阅,订阅之后,返回了一个id,需要销毁。

beforeDestory(){pubsub.unsubscribe(this.pubid);
}

判断对象有没有这个属性

todo.hasOwnProperty('isEdit')

$nextTick

点击编辑按钮,input获取焦点:

<input ref="inputTitle"/>
this.$ref.inputTitle.focus(); settimeout
this.$nextTick(function(){//会在dom节点更新之后,才会触发
})

动画效果

<template><div><button @click="isShow = !isShow">显示/隐藏</button>
<!--        <transition name="test" :appear="true"> 刷新时,也能有动画效果 --><transition name="test" appear><h1 v-show="isShow" class="come">你好呀</h1></transition></div>
</template><script>export default {// eslint-disable-next-line vue/multi-word-component-namesname: "Test",data(){return{isShow:true}}}
</script><style scoped>/*借助动画效果去实现过度*/h1{background-color: aqua;}/*入场动画 名称固定 配合transition 使用*//*.v-enter-active{*/.test-enter-active{animation: pshdhx 1s ;}/*离场动画,名称固定*//*.v-leave-active{*/.test-leave-active{animation: pshdhx 1s reverse;}/*定义动画*/@keyframes pshdhx {from{transform: translateX(-100%);}to{transform: translateX(0px);}}
</style>
<template><div><button @click="isShow = !isShow">显示/隐藏2</button>
<!--        <transition name="test" :appear="true"> 刷新时,也能有动画效果 --><transition name="test2" appear><h1 v-show="isShow" class="come">你好呀2</h1></transition></div>
</template><script>export default {// eslint-disable-next-line vue/multi-word-component-namesname: "Test2",data(){return{isShow:true}}}
</script><style scoped>/*接触过度效果去实现过度*/h1{background-color: aqua;}/*进入的起点、离开的终点*/.test2-enter,.test2-leave-to{transform: translateX(-100%);}.test2-enter-active,.test2-leave-active{transition: 0.5s linear;}/*进入的终点,离开的起点*/.test2-enter-to,.test2-leave{transform: translateX(0);}</style>
<template><div><button @click="isShow = !isShow">显示/隐藏3</button><transition appearname="test"enter-active-class="animate__animated animate__swing"leave-active-class="animate__animated animate__backOutUp"><h1 v-if="isShow">你好呀3</h1></transition></div>
</template><script>import 'animate.css';export default {// eslint-disable-next-line vue/multi-word-component-namesname: "Test3",data() {return {isShow: true}}}
</script><style scoped>/*接触过度效果去实现过度*/h1 {background-color: antiquewhite;}</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/287260.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SpringBlade export-user SQL 注入漏洞复现

0x01 产品简介 SpringBlade 是一个由商业级项目升级优化而来的 SpringCloud 分布式微服务架构、SpringBoot 单体式微服务架构并存的综合型项目。 0x02 漏洞概述 SpringBlade v3.2.0 及之前版本框架后台 export-user 路径存在安全漏洞,攻击者利用该漏洞可通过组件customSqlS…

持续集成交付CICD:K8S 通过模板文件自动化完成前端项目应用发布

目录 一、实验 1.环境 2.GitLab 更新deployment文件 3.GitLab更新共享库前端项目CI与CD流水线 4.K8S查看前端项目版本 5.Jenkins 构建前端项目 6.Jenkins 再次构建前端项目 二、问题 1. Jenkins 构建CI 流水线报错 2. Jenkins 构建CI 流水线弹出脚本报错 3. Jenkins…

排序嘉年华———选择排序和快排原始版

文章目录 一.选择排序二.霍尔版快速排序1.单趟思想2.递归多趟3.寻找中间值作为key 一.选择排序 在进行大佬“快排”之前先来一道开胃小菜————选择排序 选择排序是一种简单直观的排序算法&#xff0c;它的基本思想是每一次从待排序的数据元素中选出最小&#xff08;或最大&…

XZ_iOS 之 M1 M2 M3的M系列芯片的Mac苹果电脑安装cocoapods

安装的前提&#xff0c;应用程序->终端->右键-显示简介->勾选 使用Rosetta打开&#xff0c;如下图&#xff0c;然后重启终端 安装的顺序如下&#xff1a;Homebrew->rvm->ruby->cocoapods 1、安装Homebrew /bin/bash -c "$(curl -fsSL https://raw.git…

Python Pandas Excel/csv文件的保存与读取(第14讲)

Python Pandas Excel/csv文件的读取于保存(第14讲)         🍹博主 侯小啾 感谢您的支持与信赖。☀️ 🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔ꦿ🌹꧔…

部署promethues采集kubelet数据报错:server returned HTTP status 403 Forbidden

背景 笔者尝试部署手动部署promethues去采集kubelet的node节点数据信息时报错 笔者的promethus的配置文件和promthues的clusterrole配置如下所示&#xff1a; apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata:name: prometheus rules: - apiGroups: […

一种基于外观-运动语义表示一致性的视频异常检测框架 论文阅读

A VIDEO ANOMALY DETECTION FRAMEWORK BASED ON APPEARANCE-MOTION SEMANTICS REPRESENTATION CONSISTENCY 论文阅读 ABSTRACT1. INTRODUCTION2. PROPOSED METHOD3. EXPERIMENTAL RESULTS4. CONCLUSION阅读总结&#xff1a; 论文标题&#xff1a;A VIDEO ANOMALY DETECTION FRA…

ASP.NET Core MVC依赖注入理解(极简个人版)

依赖注入 文献来源&#xff1a;《Pro ASP.NET Core MVC》 Adam Freeman 第18章 依赖注入 1 依赖注入原理 所有可能变化的地方都用接口在使用接口的地方用什么实体类通过在ConfigureService中注册解决注册的实体类需要指定在何种生命周期中有效 TransientScopedSingleton 2…

【一】FPGA实现SPI协议之SPI协议介绍

【一】FPGA实现SPI协议之SPI协议介绍 一、spi协议解析 spi协议有4根线&#xff0c;主机输出从机输入MOSI、主机输入从机输出MISO、时钟信号SCLK、片选信号SS\CS 。 一般用于主机和从机之间通信。由主机发起读请求和写请求&#xff0c;主机的权限是主动的&#xff0c;从机是被…

深入理解 HTTP 和 HTTPS:提升你的网站安全性(下)

&#x1f90d; 前端开发工程师&#xff08;主业&#xff09;、技术博主&#xff08;副业&#xff09;、已过CET6 &#x1f368; 阿珊和她的猫_CSDN个人主页 &#x1f560; 牛客高级专题作者、在牛客打造高质量专栏《前端面试必备》 &#x1f35a; 蓝桥云课签约作者、已在蓝桥云…

《点云处理》 点云去噪

前言 通常从传感器&#xff08;3D相机、雷达&#xff09;中获取到的点云存在噪点&#xff08;杂点、离群点、孤岛点等各种叫法&#xff09;。噪点产生的原因有不同&#xff0c;可能是扫描到了不想要扫描的物体&#xff0c;可能是待测工件表面反光形成的&#xff0c;也可能是相…

【AI图集】猫狗的自动化合成图集

猫是一种哺乳动物&#xff0c;通常被人们作为宠物饲养。它们有柔软的毛发&#xff0c;灵活的身体和尖锐的爪子。猫是肉食性动物&#xff0c;主要以肉类为食&#xff0c;但也可以吃一些蔬菜和水果。猫通常在夜间活动&#xff0c;因此它们需要足够的玩具和活动空间来保持健康和快…