InsPager
快速开始
- 安装依赖
npm i element-plus
npm i @ins-ui/ins-pager
// or
yarn add element-plus
yarn add @ins-ui/ins-pager
1
2
3
4
5
6
7
8
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 InsTable from '@ins-ui/ins-pager'
import '@ins-ui/ins-pager/lib/style.css'
let app = createApp(App)
app.use(ElementPlus)
app.use(InsTable)
app.mount('#app')
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17