In Vue, we can define (register) local components ourselves To define a component name: var ComponentA = { /* ... */ } var ComponentB = { /* ... */ } Then define the components you want to use in the components option: new Vue({ el: '#app', // Component center components: { // When rendering a local registered component at the view layer // component-a: the name you want to use when calling at the view layer // ComponentA: Local registered component name 'component-a': ComponentA, 'component-b': ComponentB } }) Call the local component in the view layer: <div id="app"> <component-a></component-a> <component-b></component-b> </div> For example: <body> <div id="app"> <component-a></component-a> <component-b></component-b> </div> <script src="./js/vue.js"></script> <script> let componentA = { template:` <p>I am a local component 1</p> ` } let componentB = { template:` <p>I am a local component 2</p> ` } let vm = new Vue({ el:'#app', data:{ }, components:{ "component-a":componentA, "component-b":componentB } }) </script> The output is: You may also be interested in:
|
<<: Perfect solution to Google Chrome autofill problem
Drop-down menus are also very common in real life...
Table of contents Add traffic function to github+...
This article example shares the specific code of ...
This time we use HTML+CSS layout to make a prelim...
Written in front In the past and in the current p...
MySQL slow log is a type of information that MySQ...
Vue plugin reports an error: Vue.js is detected o...
1. Introduction The requirement is to obtain the ...
1 QPS calculation (number of queries per second) ...
Table of contents Preface Type Inference Truth va...
MYSQL is case sensitive Seeing the words is belie...
Environment Preparation Before starting any opera...
When making web pages, you often encounter the pr...
Compared with other large databases such as Oracl...
Install ssh tool 1. Open the terminal and type th...