简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
vuex 状态管理1. state的三种用法直接获取store的statecomputed: {count () {return this.$store.state.count}}从mapState中获取computed: {...mapState(['count'])}在mapState中定义别名comp...
vue 监听器watchnew Vue({el: '#root',template: `<div><div>Name: {{name}}</div><div>Name: {{getName()}}</div><div>FullNam
vue 插槽slot1. 默认插槽const component = {template: `<div :style="style"><slot></slot></div>`,data () {return {style: {width: '...
vue 数据绑定-动态样式动态class名绑定的几种方式1. 对象方式new Vue({el: '#root',template: `<div :class="{active: isActive"></div>`,data () {return {isActive: true}}})数组内对象...
vue组件 组件的继承import Vue from 'vue'const component = {data () {return {text: 111}},props: {propOne: String},mounted () {console.log('component1 mounted')},...
vue2.0 自定义时间日期过滤器filters:
在iPhone浏览器上滚动页面时,页面出现了橡皮筋效果layout.vue<template><div class="layout"><header></header><router-view/><footer>
vue1.0中 vm.$dispatch 和 vm.$broadcast 被弃用,改用$emit,$on
1. 生成element皮肤1.1 下载custom-element-themegit clone https://github.com/PanJiaChen/custom-element-theme.git1.2 安装npm i element-theme -g1.3 修改element-variables.scss主颜色$--color-primary: #f81c1c !de...