Module build failed (from ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loader
Module build failed (from ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js): 16:49:42.890 语法错误: This experimental syntax requires enabling one of the follo…
练习vuex:踩坑——初始值设为0
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…
vue下拉框值改变_vue select下拉框绑定值不跟着变问题
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 table的多选(简单购物车)
做一个简单购物车的小例子。 数据库使用mysql。其中有三个表 product(商品表) orders(订单表) orderitem(订单详情表) 在前台我们使用vue来实现页面的展示。 直接上代码 在vue中table的多选只需要加type即可。 <el-table-column label="购买" type="selection" > 在el-table中定义一个@selecti…
Vue Element Vue-Underscore、Qs、Vue-Cookies、LocalStorage、CSS 样式
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…
vue2.0中的退出登录问题
在vue项目中,我们想要退出登陆,那么,通过之前的权限设定,我们需要将 vuex 、 **storage 中的token都清理,并且返回到登陆页面。 1. 我们在mutations中清理token,因为在之前的设定中。我们用token来确认当前是否是登陆状态 2. 我们在点击事件中,确认本次退出。 用commit传到vuex中执行,并且让他路由返回到登陆页面去。这里我们为什么使用 this.$ro…
vue 监听路由变化
watch监听: 监听一级路由:路由组件的渲染区域为 router-view ,作为顶层出口,它将匹配到的路由组件渲染在该区域中,路由组件渲染默认的方式是销毁 - 创建,因此 $watch 是监听不到一级路由的变化的。所以,要想使用 $router 监听一级路由,需要让组件成为复用组件,也就是使用 keep-alive 包裹 router-view 。 <keep-alive> <…
VUE时间进度条组件
VUE时间进度条组件 template代码 <div class="timeLineContent"> <div class="timeLine"> <el-row class="timeLine_row"> <el-col :span="3"> <div class="play"> <i :title=" nextStatus =…
- Go to the previous page
- 1
- …
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- …
- 247
- Go to the next page