logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vuex 状态管理state、getter、mutation和action

vuex 状态管理1. state的三种用法直接获取store的statecomputed: {count () {return this.$store.state.count}}从mapState中获取computed: {...mapState(['count'])}在mapState中定义别名comp...

vue 监听器watch

vue 监听器watchnew Vue({el: '#root',template: `<div><div>Name: {{name}}</div><div>Name: {{getName()}}</div><div>FullNam

vue 插槽slot与provide/inject跨组件传值

vue 插槽slot1. 默认插槽const component = {template: `<div :style="style"><slot></slot></div>`,data () {return {style: {width: '...

vue 数据绑定-动态样式

vue 数据绑定-动态样式动态class名绑定的几种方式1. 对象方式new Vue({el: '#root',template: `<div :class="{active: isActive"></div>`,data () {return {isActive: true}}})数组内对象...

vue组件 组件的继承extend

vue组件 组件的继承import Vue from 'vue'const component = {data () {return {text: 111}},props: {propOne: String},mounted () {console.log('component1 mounted')},...

vue2.0 自定义日期时间过滤器

vue2.0 自定义时间日期过滤器filters:

vue中禁止ios浏览器页面滚动的橡皮筋效果

在iPhone浏览器上滚动页面时,页面出现了橡皮筋效果layout.vue<template><div class="layout"><header></header><router-view/><footer>

vue2.0 #$emit,$on的使用

vue1.0中 vm.$dispatch 和 vm.$broadcast 被弃用,改用$emit,$on

vue element 多套主题换肤

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...

到底了