1. Use version
2. Install the vite pluginyarn add vite-plugin-style-import -D or npm i vite-plugin-style-import -D Plugin repository address: github 3.vite.config.js configurationimport vue from '@vitejs/plugin-vue' import styleImport from 'vite-plugin-style-import'; /** * @type {import('vite').UserConfig} */ export default { plugins: [ vue(), styleImport({ libs: [{ libraryName: 'ant-design-vue', esModule: true, resolveStyle: (name) => { return `ant-design-vue/es/${name}/style/css`; }, }] }) ] } 4. Test run main.js import { createApp } from 'vue' import App from './App.vue' import { Input } from 'ant-design-vue'; const app = createApp(App) app.use(Input) app.mount('#app') Used in components <template> <!-- Imported and used in script-setup, no registration required--> <Button type="primary"> Primary</Button> <!-- Use use to register components in main.js --> <a-input placeholder="Basic usage" /> </template> <script setup> import { Button } from "ant-design-vue"; </script> This is the end of this article about how to implement on-demand loading of ant-design-vue@next components in vite2.x. For more relevant vite2.x on-demand loading content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Related commands to completely uninstall nginx under ubuntu16.04
>>: MySQL uses variables to implement various sorting
1. Overview The so-called life cycle function is ...
Preface Nowadays, in projects, the Axios library ...
Table of contents 1. Operate the database 1.1 Cre...
Here we take the Jenkins container as an example ...
Students who use Ansible know that Ansible only s...
MySQL5.7.21 installation and password setting tut...
Table of contents What to do when registering an ...
1. Configuration By default, the first two are no...
How to view version information under Linux, incl...
<br />The author used to be a novice in web ...
in conclusion % of width: defines the percentage ...
This article example shares the specific code of ...
Get the current time: select current_timestamp; O...
1. Create an empty directory $ cd /home/xm6f/dev ...
Table of contents introduce Prepare Download syst...