Vue 组件基础介绍
发布时间:2023-04-03 08:38:44 所属栏目:教程 来源:
导读:组件是可复用的 Vue 实例, 我们可以把页面中在多个场景中重复使用的部分,抽出为一个组件进行复用。组件大大提高了代码的复用率。
我们可以通过调用 Vue.component 的方式来定义全局组件,它接收两个参数:1. 组
我们可以通过调用 Vue.component 的方式来定义全局组件,它接收两个参数:1. 组
组件是可复用的 Vue 实例, 我们可以把页面中在多个场景中重复使用的部分,抽出为一个组件进行复用。组件大大提高了代码的复用率。 我们可以通过调用 Vue.component 的方式来定义全局组件,它接收两个参数:1. 组件名,2. 组件属性对象。 命名: 短横线:<my-component-name> 驼峰式:<MyComponentName> 使用驼峰命名组件时,首字母最好以大写字母开头。 属性对象:组件的属性对象即为 Vue 的实例对象属性。 全局组件可以在任何其他组件内使用,所以当我们设计的组件,需要在不同地方使用的时候,我们应当注册全局组件。 // 注册 // 驼峰命名 Vue.component('MyComponentName', {/* */}) // 短横线命名 Vue.component('my-component-name', {/* */}) ...... // 使用 <my-component-name></my-component-name> // 也可以使用自闭和的方式 <my-component-name /> 具体示例如下: <!DOCTYPE html> <html lang="en"> <head> <Meta charset="UTF-8"> <Meta name="viewport" content="width=device-width, initial-scale=1.0"> <Meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <my-component></my-component> <my-component /> </div> </body> <script src="https://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> Vue.component('myComponent', { template: '<div>Hello !</div>' }) var vm = new Vue({ el: '#app', data() { return {} } }) </script> </html> 代码解释: JS 代码第 3-5 行,我们注册了一个全局组件 myComponent,并在 html 内使用两种方式引用了该组件。 我们也可以在 Vue 实例选项中注册局部组件,这样组件只能在这个实例中使用。局部组件的注册利用 Vue 实例的 components 对象属性,以组件名作为 key 值,以属性对象作为 value。由于局部组件只能在当前的 Vue 实例中使用,所以当我们设计的组件不需要在其他组件内复用时,可以设计为局部组件。 //注册 components: { 'MyComponentName': { template: '<div>Hello !</div>' } } ...... // 使用 <my-component-name></my-component-name> // 也可以使用自闭和的方式 <my-component-name /> 具体示例如下: <!DOCTYPE html> <html lang="en"> <head> <Meta charset="UTF-8"> <Meta name="viewport" content="width=device-width, initial-scale=1.0"> <Meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <my-component></my-component> <my-component /> </div> </body> <script src="https://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> var vm = new Vue({ el: '#app', components: { 'myComponent': { template: '<div>Hello !</div>' } } }) </script> </html> 代码解释: JS 代码第 5-9 行,我们在当前实例上注册了一个局部组件 myComponent,并在 html 内使用两种方式引用了该组件。 在之前章节我们学习了 Vue 实例,其实,所有的 Vue 组件也都是 Vue 的实例,他们也可以接收同样的属性参数,并且有相同的生命周期钩子。 示例: <!DOCTYPE html> <html lang="en"> <head> <Meta charset="UTF-8"> <Meta name="viewport" content="width=device-width, initial-scale=1.0"> <Meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <my-component></my-component> </div> </body> <script src="https://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> Vue.component('myComponent', { template: '<div><div>{{ count }}</div><button @click="add">添加次数</button></div>', data() { return { count: } }, methods: { add() { this.count = this.count + ; } }, created() { console.log('组件myComponent:created') } }) var vm = new Vue({ el: '#app', data() { return {} } }) </script> </html> 代码解释: JS 代码第 3-18 行,注册了一个全局组件 myComponent,并定义了 data 数据、 methods 方法、created 生命周期函数。 你可以将组件进行任意次数的复用,他们之间相互独立,互不影响: <!DOCTYPE html> <html lang="en"> <head> <Meta charset="UTF-8"> <Meta name="viewport" content="width=device-width, initial-scale=1.0"> <Meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <my-component></my-component> <my-component></my-component> <my-component></my-component> </div> </body> <script src="https://unpkg.com/vue/dist/vue.js"></script> <script type="text/javascript"> Vue.component('myComponent', { template: '<div><div>{{ count }}</div><button @click="add">添加次数</button></div>', data() { return{ count: } }, methods: { add() { this.count = this.count + ; } }, }) var vm = new Vue({ el: '#app', data() { return {} } }) </script> </html> 代码解释: html 代码第 2-4 行,我们来使用三次组件 myComponent。他们之间是相互独立的,当点击按钮时,每个组件都会各自独立维护它的 count。因为我们每使用一次组件,就会有一个它的新实例被创建。 当我们定义这个 <myComponent> 组件时,你可能会发现它的 data 并不是像这样直接提供一个对象: data: { count: } 这是因为,一个组件的 data 选项必须是一个函数,因此每个实例可以维护一份被返回对象的独立的拷贝: data: function () { return { count: } } 在本小节,我们学习了在项目中如何使用组件式开发,主要有以下知识点: 通过 Vue.component () 注册和使用全局组件。 通过 Vue 实例上的 components 属性注册和使用局部组件。 介绍了组件中的属性参数。 (编辑:汽车网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐
热点阅读