小程序自定义组件报错ome selectors are not allowed in component wxss, including tag name selectors...意思就是自定义组件里使用不了不合法的标签或wxss样式里使用不合规的样式属性或选择器。
VM3564:1 Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./components/componentLabel/index.wxss:3:1)This wxss file is ignored.
以上错误是由于违反了自定义组件的一些特殊规则所致。
以上英文翻译:组件的wxss文件中禁止使用 标签名选择器,id选择器和属性选择器;
经查文档,有明确说明:
将禁用的选择器用 类选择器 代替后,代码无报错;经测试,使用 id选择器 和 属性选择器 会出现上述错误。而 标签名选择器 并未出现。
//错误样式 .btn view{} .btn > view{}
子元素下view必须加class.