logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

element-ui 之采坑记录

Table 表格参数说明类型可选值默认值 resizable对应列是否可以通过拖动改变宽度(需要在 el-table 上设置 border 属性为真)boolean—true show-overflow-tooltip当内容过长被隐藏时显示 tooltipBoolean—...

Element-ui el-table组件实现跨页选中

首先定义datadata () {return {multipleSelectionAll: [],// 所有选中的数据包含跨页数据multipleSelection: [],// 当前页选中的数据  idKey: 'personId', // 标识列表数据中每一行的唯一键的名称(需要按自己的数据改一下)tableData...

element-ui tree结构实现增删改自定义功能

首先是页面部分<template><el-treeid="userMtree"ref="tree":data="treeData"node-key="id":render-content="renderContent":expand-on-click-nod

element-ui之table 选择框禁用

var Main = {  data() {    return {      tableData: [{          date: '2018',          name: '小海',          address: '上海市'        }, {          date: '2016',          name: '小北',          ad...

vue 使用element 刷新保持当前路由状态

<el-menu :default-active="$route.path" routermode="horizontal"><el-menu-item v-for="route in routes" :key="route.path" :index="route.p

vue 表单验证自定义字段,特殊字符

formValidate: {account: [{ required: true, type: 'string', max: 11, message: '请输入用户名', trigger: 'blur' },],password: [{ required: ...

vue+iview 实现项目中一件切换主题

<Button @click="changetheme(0,$event)" type="primary">主题</Button><Button @click="changetheme(1,$event)" type="primary">主题</Button><Button @click="changetheme(2,$event)" t...

vue-router 根据权限跳转路由

首先将路由更改,由路由变成配置文件                           原来结构                            更改后结构  import Router from 'vue-router'//引用路由import routerConfig from './router'//引用配置路由地址Vue.use(Router)//使用路由...

vue的ref与$refs

 一. ref使用在父组件上父组件html:  <information ref='information'></information>  import information from './information'  components:{information,bill,means},在父组件上使用子组件的值,js :this.$r

vue填坑(一)

MVVM模式MVVM、MVC、MVP都是架构模式,这里是这三者的图示。vue中MVVM架构如下: Vue基本语法Vue实例和Vue组件Vue实例由Vue函数创建。var vm = new Vue({//})Vue组件也是Vue实例,组件可以扩展html元素,封装可重用代码。// 注册Vue.component('my-component', {templ...

    共 32 条
  • 1
  • 2
  • 3
  • 4
  • 请选择