uniapp按需引入ThorUI
时间: 2023-07-24 12:13:18 浏览: 186
uniapp组件库-ThorUI-uni-vip.zip
要按需引入ThorUI,你需要进行以下步骤:
1. 在`main.js`文件中,引入`ThorUI`的`index.js`文件,如下所示:
```javascript
import Vue from 'vue'
import App from './App'
import ThorUI from './components/thorui/index.js'
Vue.use(ThorUI)
new Vue({
el: '#app',
render: h => h(App)
})
```
2. 在需要使用`ThorUI`组件的页面中,按需引入需要的组件,例如:
```javascript
import { ThorButton, ThorIcon } from '@/components/thorui'
```
3. 在页面中使用按需引入的组件,例如:
```html
<template>
<div>
<ThorButton type="primary">Primary Button</ThorButton>
<ThorIcon name="search"></ThorIcon>
</div>
</template>
```
这样就可以按需引入`ThorUI`组件了。
阅读全文