VUE 2定义字符串模板的样式

时间:2019-07-05 13:03:22

标签: vuejs2 vue-component

我有一个Vue组件,它在数据函数中定义了一个子组件。

export default {
    name: 'ParentComponent',
    data () {
        return {
            childComponent: {
                name: 'Child',
                template: '<a> want to define an anchor tag with styling</a>',
                },
            }
        }
    }

如何为上述子组件定义范围样式。我无法在文件中创建子模板。

0 个答案:

没有答案