2.16.0 • Published 1 year ago

elementui-lts v2.16.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

A Vue.js 2.0 UI Toolkit for Web.

Element will stay with Vue 2.x

For Vue 3.0, we recommend using Element Plus(Element Plus is a community develop project)

For MiniProgram development, we recommend using MorJS

Links

Install

npm install elementui-lts -S

Quick Start

import Vue from 'vue'
import Element from 'elementui-lts'
import 'elementui-lts/lib/theme-chalk/index.css';
Vue.use(Element)

// or
import {
  Select,
  Button
  // ...
} from 'elementui-lts'

Vue.component(Select.name, Select)
Vue.component(Button.name, Button)