简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
Table 表格参数说明类型可选值默认值 resizable对应列是否可以通过拖动改变宽度(需要在 el-table 上设置 border 属性为真)boolean—true show-overflow-tooltip当内容过长被隐藏时显示 tooltipBoolean—...
首先定义datadata () {return {multipleSelectionAll: [],// 所有选中的数据包含跨页数据multipleSelection: [],// 当前页选中的数据 idKey: 'personId', // 标识列表数据中每一行的唯一键的名称(需要按自己的数据改一下)tableData...
首先是页面部分<template><el-treeid="userMtree"ref="tree":data="treeData"node-key="id":render-content="renderContent":expand-on-click-nod
var Main = { data() { return { tableData: [{ date: '2018', name: '小海', address: '上海市' }, { date: '2016', name: '小北', ad...
<el-menu :default-active="$route.path" routermode="horizontal"><el-menu-item v-for="route in routes" :key="route.path" :index="route.p
formValidate: {account: [{ required: true, type: 'string', max: 11, message: '请输入用户名', trigger: 'blur' },],password: [{ required: ...
<Button @click="changetheme(0,$event)" type="primary">主题</Button><Button @click="changetheme(1,$event)" type="primary">主题</Button><Button @click="changetheme(2,$event)" t...
首先将路由更改,由路由变成配置文件 原来结构 更改后结构 import Router from 'vue-router'//引用路由import routerConfig from './router'//引用配置路由地址Vue.use(Router)//使用路由...
一. ref使用在父组件上父组件html: &lt;information ref='information'&gt;&lt;/information&gt; import information from './information' components:{information,bill,means},在父组件上使用子组件的值,js :this.$r
MVVM模式MVVM、MVC、MVP都是架构模式,这里是这三者的图示。vue中MVVM架构如下: Vue基本语法Vue实例和Vue组件Vue实例由Vue函数创建。var vm = new Vue({//})Vue组件也是Vue实例,组件可以扩展html元素,封装可重用代码。// 注册Vue.component('my-component', {templ...