美文网首页
Vue中创建组件

Vue中创建组件

作者: ___大鱼___ | 来源:发表于2018-11-08 15:43 被阅读6次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
    <div id="app">

<!-- 如果要使用组件, 直接把组件的名称, 以HTML标签的形式显示出来即可
如何定义的模板名为驼峰命名中有大写 如 codDocker 则需要用cod-docker来展示, 否则页面不会展示
-->
<mycom1></mycom1>




    </div>


    <script>
        // 使用Vue.extend 来创建全局的Vue组件
    var com1 = Vue.extend({
       template: '<h3>我是你大哥你服不服</h3>'  // 通过 template 属性, 指定了组件需要展示的HTML结构
    });

    // 使用 Vue.component('组件的名称', 要展示的组件)
    Vue.component('mycom1', com1)


        var app = new Vue({
            el: '#app',
            data:{


            },
            methods: {

            },
            created: function () {

            },
            mounted: function () {

            }
        })

    </script>
</body>
</html>

相关文章

  • vue 组件和路由

    === Vue组件Vue组件的创建vue.extend结合vue.component创建vue.component...

  • Vue组件和父子组件

    【一】Vue组件化 创建组件构造器对象Vue.extend() 创建组件构造器const cpnc = Vue.e...

  • 08Vue创建组件的方法

    Vue.js中创建组件主要有三个步骤:创建组件构造器,注册组件以及使用组件。 创建组件构造器 创建组件构造器的方法...

  • Vue3.0破坏性变化----异步组件

    vue3.0中异步组件要求使用defineAsyncComponent方法创建 由于vue3中函数式组件必须定义为...

  • Vue/组件

    Vue/组件 创建组件 单独声明一个Vue.component,使用只需要在Vue实例下使用定义的组件名在组件中d...

  • vue 3.0 封装 Toast 组件

    使用 vue3.0 封装组件与 vue 2.x 相比有一些区别: 创建组件时使用的函数不同在 vue2.x 中创建...

  • uniapp自定义tabbar

    App.vue中隐藏系统tabbar 创建tabbar组件 页面引用tabbar组件

  • 非父子组件事件传递

    VUE中非父子组件如何把A组件中的msg传递到B组件 创建一个bus.js content: import Vue...

  • Vue中创建组件

  • vue.component、vue.extend、vue

    vue.component 注册全局组件 vue.extend 创建组件构造器 vue.component(组件名...

网友评论

      本文标题:Vue中创建组件

      本文链接:https://www.haomeiwen.com/subject/nmuwxqtx.html