Vue 教程(十五)全局组件

Posted _否极泰来_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 教程(十五)全局组件相关的知识,希望对你有一定的参考价值。

Vue 教程(十五)全局组件

Vue 组件

  1. 创建组件 Vue.extend()
  2. 注册组件 Vue.component()
  3. 在全局使用

代码实现

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>全局组件</title>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>

<body>
    <div id="app">
        {{message}}
        <book-component></book-component>
    </div>
    <script>
        const book_component = Vue.extend({
            template: `
                <div>
                    <h3>图书:TCP/IP 网络编程</h3>
                    <p>计算机网络入门书籍</p>
                </div>
            `
        })
        Vue.component('book-component', book_component);
        const app = new Vue({
            el: "#app",
            data: {
                message: "全局组件"
            }
        })
    </script>
</body>

</html>

    – 以上为《Vue 教程(十五)全局组件》,如有不当之处请指出,我后续逐步完善更正,大家共同提高。谢谢大家对我的关注。

——厚积薄发(yuanxw)

以上是关于Vue 教程(十五)全局组件的主要内容,如果未能解决你的问题,请参考以下文章

Vue组件之全局组件与局部组件

Vue组件之全局组件与局部组件

Vue2.0学习—mixin混入(五十五)

vue教程3-03 vue组件,定义全局局部组件,配合模板,动态组件

vue电商后台管理系统保姆级教程(十五)——使用Echarts数据统计

vue3.0快速上手教程之vue--组件02