Home  >  Article  >  Web Front-end  >  There are several ways to register components in Vue

There are several ways to register components in Vue

php中世界最好的语言
php中世界最好的语言Original
2018-03-28 17:41:112597browse

This time I will bring you several ways to register components with vue. What are the precautions when using vue to register components? Here are practical cases, let’s take a look.

1. Global registration (components registered in this way must be declared before vue is instantiated)

Vue.component('tag-name',{})

2 , Partial registration

var Child = {
 template: '

A custom component!

' } new Vue({  // ...  components: {  //  将只在父模板可用  'my-component': Child  } })

3. Extended instance

// 定义一个混合对象
var myMixin = {
 created: function () {
 this.hello()
 },
 methods: {
 hello: function () {
  console.log('hello from mixin!')
 }
 }
}
// 定义一个使用混合对象的组件
var Component = Vue.extend({
 mixins: [myMixin]
})
var component = new Component() // -> "hello from mixin!"

I believe you have mastered the method after reading the case in this article. For more exciting content, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to implement inertial sliding & rebound Vue navigation bar on mobile terminal

Solve vue2.0 routing Problem with router-view not being displayed

The above is the detailed content of There are several ways to register components in Vue. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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