美文网首页
vue使用组件

vue使用组件

作者: _undefined | 来源:发表于2019-09-26 09:56 被阅读0次

template

<div id="app">
    {{msg}}
    <test :test-msg="testMsg"></test>
</div>
<template id="tempTest">
    <h1>{{ testMsg }}</h1>
</template>

script

<div id="app">
    {{msg}}
    <test :test-msg="testMsg"></test>
</div>
<script type="x-template" id="tempTest">
    <h1>{{ testMsg }}</h1>
</script>

直接拼接字符串

var tempHtml = '<h1>{{ testMsg }}</h1>'
var comps = [
    {
        name: 'test',
        data: function() {
            return {
                // ...
            }
        },
        props: ['test-msg'],
        template: '#tempTest'
        // tempalte: 'tempHtml'
    }
]

comps.forEach(function(comp) {
    Vue.component(comp.name, comp)
})

new Vue({
    el: '#app',
    data: {
        msg: 'hello world',
        testMsg: 'hello test'
    }
})

单文件组件

#template

相关文章

网友评论

      本文标题:vue使用组件

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