How to automatically import Vue components on demand

How to automatically import Vue components on demand

In Vue, we can use components through global components and local registration

Global Registration

Create global components through app.component

import { createApp } from 'vue'
import HelloWorld from './components/HelloWorld'

const app = createApp({})

// Globally register a component named hello-wolrd app.component('hello-wolrd', HelloWorld);

Once we register the component globally, we can use it anywhere: <hello-world/>

It is worth noting that global registration will make Vue lose TypeScript support. Vue 3 has a PR that expands the interface of global components. Currently, Volar already supports this usage. We can add TypeScript support for all game components by adding a components.d.ts file to the root directory.

declare module 'vue' {
  export interface GlobalComponents {
    HelloWorld: typeof import('./src/components/HelloWorld.vue')['default']
  }
}

Partial Registration

We can import the vue component directly from the file.

In a single file component (SFC)

<template>
  <HelloWorld msg="Welcome to Your Vue.js App"/>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'

export default {
  name: 'App',
  components:
    HelloWorld
  }
}
</script>

In JSX

import HelloWorld from './components/HelloWorld.vue'
export default {
  name: "item",
  render(){
    return (
      <HelloWorld msg="Welcome to Your Vue.js App"/>
    )
  }
}

Locally registered components are not accessible in other components and are not available in their parent or child components, so you need to reintroduce and register the component in each place where it is used.

import HelloWorld from './components/HelloWorld.vue'

But this way of importing components directly has another advantage. If the imported component uses typescript, we can get smart prompts and type checking functions in the component without any plugins.

Local automatic registration

It can be seen that the advantages of local registration are obvious, but we need to import it repeatedly every time we use it. However, if you have many components, your component registration code may look lengthy. We can use unplugin-vue-components to automatically import components on demand. It will import components on demand, but there is no need to import and register components.

This plugin will automatically generate a components.d.ts for the components used to get TypeScript support.

Install the plugin

vite

// vite.config.ts
import Components from 'unplugin-vue-components/vite'

export default defineConfig({
  plugins: [
    Components({ /* options */ }),
  ],
})

Rollup

// rollup.config.js
import Components from 'unplugin-vue-components/rollup'

export default {
  plugins: [
    Components({ /* options */ }),
  ],
}

webpack

// webpack.config.js
module.exports = {
  /* ... */
  plugins: [
    require('unplugin-vue-components/webpack')({ /* options */ })
  ]
}

We can then use the component in our template as usual and it will automatically do the following transformation

<template>
  <div>
    <HelloWorld msg="Hello Vue 3.0 + Vite" />
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>

Convert to

<template>
  <div>
    <HelloWorld msg="Hello Vue 3.0 + Vite" />
  </div>
</template>

<script>
import HelloWorld from './src/components/HelloWorld.vue'

export default {
  name: 'App',
  components:
    HelloWorld
  }
}
</script>

By default, it will search for components in the src/components directory. We can customize the component directory through the dirs parameter. For other configurations, refer to github.com/antfu/unplu…

Comparison of different solutions

Global Registration Partial Registration unplugin-vue-components
TypeScript support Define the components.d.ts file Default support Automatically generate components.d.ts file
Component Scope Global Local Local
How to use Use after global registration Use after local registration Use after adding the plugin

About component names

There are two ways to define component names:

Using kebab-case:

Vue.component('my-component-name', { /* ... */ })
When defining a component using kebab-case (dash-separated names),
You must also use kebab-case when referencing the custom element, for example <my-component-name> .

Use PascalCase

Vue.component('MyComponentName', { /* ... */ })
When defining a component using PascalCase,
You can use either nomenclature when referencing the custom element.
This means that both <my-component-name> and <MyComponentName> are acceptable.
Note, however, that only kebab-case is valid when used directly in the DOM (i.e. non-string templates).

Therefore, we generally recommend that components use the kebab-case naming method.

refer to

v3.cn.vuejs.org/guide/comp…

v3.cn.vuejs.org/guide/types…

github.com/antfu/unplu…

Summarize

This is the end of this article on how to automatically introduce Vue components on demand. For more information about automatically introducing Vue components on demand, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Vue's method of introducing subcomponents
  • Detailed explanation of how to introduce elementUI components into vue projects
  • Vue's method of introducing all public components at one time in a concise and clear manner
  • Detailed explanation of how to create a new Vue project and introduce the component Element
  • Solve the problem of Vue introducing subcomponent errors
  • How to import, register and use components in batches in Vue

<<:  MySQL database constraints and data table design principles

>>:  vmware virtual machine ubuntu18.04 installation tutorial

Recommend

A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

1. Check the PHP version after entering the termi...

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

Specific use of the autoindex module in the Nginx Http module series

The main function of the brower module is to dete...

javascript Blob object to achieve file download

Table of contents illustrate 1. Blob object 2. Fr...

Detailed explanation of several ways to export data in Mysql

There are many purposes for exporting MySQL data,...

Detailed explanation of Linux text processing command sort

sort Sort the contents of a text file Usage: sort...

Install Memcached and PHP Memcached extension under CentOS

Regarding the high-performance distributed memory...

Summary of 4 ways to add users to groups in Linux

Preface Linux groups are organizational units use...

Detailed example of how to implement transaction commit and rollback in mysql

Recently, we need to perform a scheduled migratio...

Detailed explanation of Tomcat directory structure

Table of contents Directory Structure bin directo...

Centos7 mysql database installation and configuration tutorial

1. System environment The system version after yu...

Use nginx to dynamically convert image sizes to generate thumbnails

The Nginx ngx_http_image_filter_module module (ng...

File upload via HTML5 on mobile

Most of the time, plug-ins are used to upload fil...

How to reset the root password of Mysql in Windows if you forget it

My machine environment: Windows 2008 R2 MySQL 5.6...