vue
Hope瑶瑶瑶~☆
我希望我的希望有希望 hope~
展开
-
Vue中import引入方式详解及export和export default的区别
Vue中import引入方式详解及export和export default的区别 引入第三方插件 import echarts from "echarts" import axios from "axios" import ElementPlus from "element-plus" 2.引入工具类 一、引入单个 import { isProgrammer } from "./filter" export 导出: export functionisProgra...原创 2021-12-24 10:56:53 · 920 阅读 · 1 评论 -
获取到整个数组在渲染列表时需要将其中的时间进行倒序
// 根据素材编辑时间倒序排列 this.tableData.sort((a, b) => { let aTimeString = a.updateTime; //updateTime属于数组中的时间 let bTimeString = b.updateTime; aTimeString = aTimeString.replace(/-/g, "/") ..原创 2021-12-17 13:57:24 · 597 阅读 · 0 评论 -
Vue生命周期
1.创建 beforeCreate created beforeCreate() 创建前的阶段,这个时候data中的数据,还未定义,所以不能使用created() 最早开始使用 data和methods中数据的钩子函数 2.挂载 beforeMount mounted beforeMount() 指令已经解析完毕内存中已经生成dom树,还没有渲染到本地mounted() dom已经渲染完毕,最早可以操作DOM元素钩子函数 3.更新 beforeUpdate updated befor.原创 2021-10-15 18:43:59 · 117 阅读 · 1 评论 -
Vue基础二
Vue基础二 v-on 用于事件监听dom事件 简写方式:@ 事件修饰符: .stop 阻止事件传播 .prevent阻止默认事件 capture事件捕获 once事件只会触发一次 prevent.self阻止所有的点击事件 self.prevent阻止对元素自身的点击 案件别名.enter .tab .delete ...原创 2021-09-01 21:57:27 · 67 阅读 · 0 评论