Home > Q&A > body text
1.页面中的占位符,比如<my-app></my-app>怎么在页面渲染后消掉
三叔2016-10-24 17:23:31
这种写法去不掉的,replace属性已经被去掉了,看这个issue。
解决这个问题的办法是在组件当中使用属性来替代你这种写法:
1
2
3
4
5
6
7
js中定义:
selector: '[myComponent]'
selector:
'[myComponent]'
html中使用:
<div mycomponent>Hello My component</div mycomponent>
参考链接:Remove the host HTML element selectors created by angular componentHow to remove/replace the angular2 component's selector tag from HTML