In Vue, we can use components through global components and local registration Global RegistrationCreate 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 RegistrationWe 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 registrationIt 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.
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
About component namesThere 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 tov3.cn.vuejs.org/guide/comp… v3.cn.vuejs.org/guide/types… github.com/antfu/unplu… SummarizeThis 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:
|
<<: MySQL database constraints and data table design principles
>>: vmware virtual machine ubuntu18.04 installation tutorial
Table of contents 1. The elephant that can’t fit ...
1. Check the PHP version after entering the termi...
Preface I recently encountered some problems at w...
The main function of the brower module is to dete...
Table of contents illustrate 1. Blob object 2. Fr...
There are many purposes for exporting MySQL data,...
sort Sort the contents of a text file Usage: sort...
Regarding the high-performance distributed memory...
Preface Linux groups are organizational units use...
Recently, we need to perform a scheduled migratio...
Table of contents Directory Structure bin directo...
1. System environment The system version after yu...
The Nginx ngx_http_image_filter_module module (ng...
Most of the time, plug-ins are used to upload fil...
My machine environment: Windows 2008 R2 MySQL 5.6...