virtual-component-v2
v0.3.0
Published
依赖于Element-ui的Vue2虚拟组件, 包含 el-tree-v2, el-select-v2, el-list-v2三个虚拟组件,以及json预览组件,响应式布局组件, 其中 el-tree-v2, el-select-v2 完全支持element-ui tree组件与 select组件的所有属性
Downloads
25
Maintainers
Readme
virtual-component-v2
依赖于Element-ui
的 Vue2 虚拟组件, 包含 el-tree-v2
, el-select-v2
, el-list-v2
三个虚拟组件, 其中 el-tree-v2
, el-select-v2
完全支持element-ui
tree 组件与 select 组件的所有属性
Install
npm install element-ui -S
npm install virtual-component-v2 -S
Use
// main.js
import Vue from "vue";
// 引入ElementUI
import ElementUI from "element-ui";
// 引入虚拟组件
import virtualComponentV2 from "virtual-component-v2";
// 虚拟组件自己的样式
import "virtual-component-v2/dist/virtualComponentV2.css";
// 引入Element的样式
import "element-ui/lib/theme-chalk/index.css";
Vue.use(ElementUI);
Vue.use(virtualComponentV2);