Introduction to local components in Vue

Introduction to local components in Vue

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:
  • Vue local component data sharing Vue.observable() usage
  • Description of the difference between Vue global components and local components
  • VUE registration global components and local components process analysis
  • Vue component definition, global and local components, template and dynamic component function examples
  • In-depth analysis of the difference between Vue global components and local components
  • Detailed explanation of how to use Vue global components and local components
  • Detailed explanation of the use of global components and local components in Vue components
  • Detailed explanation of vue.js global components and local components

<<:  Perfect solution to Google Chrome autofill problem

>>:  Textarea tag in HTML

Recommend

Native js to implement drop-down menu

Drop-down menus are also very common in real life...

JavaScript dynamically generates a table with row deletion function

This article example shares the specific code of ...

How to use HTML+CSS to create TG-vision homepage

This time we use HTML+CSS layout to make a prelim...

MySQL 8.0.17 installation and usage tutorial diagram

Written in front In the past and in the current p...

MySQL slow log online problems and optimization solutions

MySQL slow log is a type of information that MySQ...

Vue plugin error: Vue.js is detected on this page. Problem solved

Vue plugin reports an error: Vue.js is detected o...

TypeScript learning notes: type narrowing

Table of contents Preface Type Inference Truth va...

Analysis of problems caused by MySQL case sensitivity

MYSQL is case sensitive Seeing the words is belie...

Teach you how to build hive3.1.2 on Tencent Cloud

Environment Preparation Before starting any opera...

How to set the width and height of html table cells

When making web pages, you often encounter the pr...

Introduction to Enterprise Production MySQL Optimization

Compared with other large databases such as Oracl...

How to install and configure SSH service in Ubuntu 18.04

Install ssh tool 1. Open the terminal and type th...