看看这个场景:
ko.components.register('hello', {
viewModel: function() { },
template: "<h1>hello wrold</h1>"
});
如果我使用<hello></hello>
生成的 html 结果将是:
<hello><h1>hello world</h1></hello>
但是如果我想要这个怎么办:
<hello class="hello"><h1>hello world</h1></hello>
那么如何获取对组件中自定义元素标签的引用呢?