vite2.x implements on-demand loading of ant-design-vue@next components

vite2.x implements on-demand loading of ant-design-vue@next components

1. Use version

  • vite:2.0
  • ant-design-vue: 2.0.0-rc.8
  • vue:3.0.5

2. Install the vite plugin

yarn add vite-plugin-style-import -D or npm i vite-plugin-style-import -D

Plugin repository address: github

3.vite.config.js configuration

import 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:
  • Implementation of Vue 3.x project based on Vite2.x
  • Detailed explanation of vite2.0+vue3 mobile project
  • Detailed explanation of vite+ts to quickly build vue3 projects and introduce related features
  • How to use vite to build vue3 application
  • Detailed explanation of Vue3.0 + TypeScript + Vite first experience
  • Pros and Cons of Vite and Vue CLI
  • Steps to build the vite+vue3+element-plus project

<<:  Related commands to completely uninstall nginx under ubuntu16.04

>>:  MySQL uses variables to implement various sorting

Recommend

Detailed explanation of Vue3 life cycle functions and methods

1. Overview The so-called life cycle function is ...

A complete tutorial on using axios encapsulation in vue

Preface Nowadays, in projects, the Axios library ...

MySQL learning to create and operate databases and table DDL for beginners

Table of contents 1. Operate the database 1.1 Cre...

Detailed explanation of how to copy and backup docker container data

Here we take the Jenkins container as an example ...

How to delete all contents in a directory using Ansible

Students who use Ansible know that Ansible only s...

MySQL 5.7.21 installation and password configuration tutorial

MySQL5.7.21 installation and password setting tut...

Basic usage knowledge points of mini programs (very comprehensive, recommended!)

Table of contents What to do when registering an ...

Detailed explanation of Tomcat's Server Options

1. Configuration By default, the first two are no...

How to view version information in Linux

How to view version information under Linux, incl...

Web Design Experience

<br />The author used to be a novice in web ...

vue-pdf realizes online file preview

This article example shares the specific code of ...

How to create your own image using Dockerfile

1. Create an empty directory $ cd /home/xm6f/dev ...

Install Centos7 using Hyper-v virtual machine

Table of contents introduce Prepare Download syst...