Home > Web Front-end > JS Tutorial > body text

Introduction to the creation and registration methods of components in Vue.js

不言
Release: 2018-08-23 16:00:55
Original
2011 people have browsed it

This article brings you an introduction to the creation and registration methods of components in Vue.js. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Create before using

Create your own component file (.vue) under the components file

The initial structure is

<!--html区域-->
<template>
    
</template>

<!--JS区域-->
<script>
    export default {
        name: "hw"
    }
</script>

<!--css区域-->
<style scoped>

</style>
Copy after login

Add your own code settings to complete the creation of a simple sub-component file

<!--html区域-->
<template>
    <p class="hw">
      {{ name }}
    </p>
</template>

<!--JS区域-->
<script>
    export default {
        name: "hw",
      data(){
          return {
            name:"毛没齐"
        }
      }
    }
</script>

<!--css区域-->
<style scoped>
.hw{
  color: blue;
}
</style>
Copy after login

After the sub-component is created, you must register it. Only after registration can you use

Registration points For

1. Local registration component: Register in the App.Vue file and also use

2. Global Registration Component: In Main.js file After registering the component globally in

, use

in the App.vue file. Related recommendations:

Calendar_html/css_WEB-ITnose created using Vue.js

What is a Vue.js component? Summary of Vue.js component usage

The above is the detailed content of Introduction to the creation and registration methods of components in Vue.js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!