猿问

weex vue项目 build之后 样式无法在weex playground中显示

项目和官方weex-hackernews唯一不同的就是使用了sass,其他没发现不同,是使用weex init初始化的vue工程,build后通过网页访问app.web.js是可以正常显示样式的。但是使用weex playground访问app.weex.js功能都正常,就是没有样式。 查看 dist中的app.weex.js文件,里面可以找到style代码。不知道问题在哪?请问如何解决

皈依舞
浏览 868回答 2
2回答

慕尼黑8549860

用sass了,你用了嵌套吧?Weex 中只支持单个类名选择器,不支持关系选择器,也不支持属性选择器。/* 支持单个类名选择器 */.one-class {&nbsp; font-size: 36px;}/* 不支持关系选择器 */.parent > .child {&nbsp; padding-top: 10px;}/* 不支持属性选择器,不支持 `v-cloak` 指令 */[v-cloak] {&nbsp; color: #FF6600;}这个只是对样式定义的限制,不影响样式类名的使用,在标签中可以添加多个样式类名,如:<template> &nbsp;&nbsp;<div&nbsp;class="one&nbsp;two&nbsp;three"><div> </template>
随时随地看视频慕课网APP
我要回答