VUE开发环境搭建

  • Post author:
  • Post category:vue

简介 vue.js是一套构建用户界面的渐进式框架, Vue 采用自底向上增量 开发的设计。Vue 的核心库只关注视图层,并且非常容易学习,是一个基于MVVM结构的轻量 级框架,非常容易与其它库或已有项目整合。安装vue需要借助npm指令集,所以一般会先安装node.js环境。 1.下载node.js环境() 打开node.js的官网下载地址:http://nodejs.cn/download/ 选…

继续阅读 VUE开发环境搭建

练习vuex:踩坑——初始值设为0

  • Post author:
  • Post category:vue

watch: { actualTransfer: { handler(n) { if (n || n === 0) { console.log(n, "qqqqqqqqq"); // this.option.series[0].data[0][1] = this.actualTransfer; this.$set(this.option.series[0].data[0], 1, this.act…

继续阅读 练习vuex:踩坑——初始值设为0

vue下拉框值改变_vue select下拉框绑定值不跟着变问题

  • Post author:
  • Post category:vue

data() { return { value1: "", type: [{id: 1, name: '肖明'},{id: 2, name: '小红'},{id: 3, name: '小光'}], list: [1,2,3,4,5] } } v-for="_item in type" :value="_item.id" :key="_item.id" >{ { _item.name }} 通…

继续阅读 vue下拉框值改变_vue select下拉框绑定值不跟着变问题

vue table的多选(简单购物车)

  • Post author:
  • Post category:vue

做一个简单购物车的小例子。 数据库使用mysql。其中有三个表 product(商品表) orders(订单表) orderitem(订单详情表) 在前台我们使用vue来实现页面的展示。 直接上代码 在vue中table的多选只需要加type即可。 <el-table-column label="购买" type="selection" > 在el-table中定义一个@selecti…

继续阅读 vue table的多选(简单购物车)

Vue Element Vue-Underscore、Qs、Vue-Cookies、LocalStorage、CSS 样式

  • Post author:
  • Post category:vue

1、vue-underscore 本示例以 Vue Element Admin 项目为基础,介绍 vue-underscore ● 官网 vue-underscore ● 安装 npm install vue-underscore npm i vue-underscore ● /src/main.js import Vue from 'vue'; import underscore from 'v…

继续阅读 Vue Element Vue-Underscore、Qs、Vue-Cookies、LocalStorage、CSS 样式

vue2.0中的退出登录问题

  • Post author:
  • Post category:vue

在vue项目中,我们想要退出登陆,那么,通过之前的权限设定,我们需要将 vuex 、 **storage 中的token都清理,并且返回到登陆页面。 1. 我们在mutations中清理token,因为在之前的设定中。我们用token来确认当前是否是登陆状态 2. 我们在点击事件中,确认本次退出。 用commit传到vuex中执行,并且让他路由返回到登陆页面去。这里我们为什么使用 this.$ro…

继续阅读 vue2.0中的退出登录问题

vue 监听路由变化

  • Post author:
  • Post category:vue

watch监听: 监听一级路由:路由组件的渲染区域为 router-view ,作为顶层出口,它将匹配到的路由组件渲染在该区域中,路由组件渲染默认的方式是销毁 - 创建,因此 $watch 是监听不到一级路由的变化的。所以,要想使用 $router 监听一级路由,需要让组件成为复用组件,也就是使用 keep-alive 包裹 router-view 。 <keep-alive> <…

继续阅读 vue 监听路由变化

VUE全局挂在组件

  • Post author:
  • Post category:vue

首先同vue组件目录下创建js文件 ,导入自己的组件 // 导入组件,组件必须声明 name import upimg from './upimg.vue' // 为组件提供 install 安装方法,供按需引入 upimg.install = (Vue) => { Vue.component(upimg.name, upimg) } // 默认导出组件 export default upi…

继续阅读 VUE全局挂在组件

VUE时间进度条组件

  • Post author:
  • Post category:vue

VUE时间进度条组件 template代码 <div class="timeLineContent"> <div class="timeLine"> <el-row class="timeLine_row"> <el-col :span="3"> <div class="play"> <i :title=" nextStatus =…

继续阅读 VUE时间进度条组件