InsForm

快速开始

  • 安装依赖
npm i element-plus
npm i @ins-ui/ins-form

// or

yarn add element-plus
yarn add @ins-ui/ins-form

1
2
3
4
5
6
7
8
  • 导入项目
// main.js

import { createApp } from 'vue'
import App from './App.vue'

import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'

import InsForm from '@ins-ui/ins-form'
import '@ins-ui/ins-form/lib/style.css'

let app = createApp(App)

app.use(ElementPlus)
app.use(InsForm)

app.mount('#app')
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Last Updated: 12/29/2021, 9:12:33 AM
Contributors: XIEYUANJIANG\xie