Vue+ElementUI踩坑

2018-08-01  本文已影响478人  hsqin

样式踩坑

1,el-table在scoped的style中设置样式无效,求解
<style scoped lang="scss"> // 无效样式
   .employee-table .el-table__body tr td:last-child{
        .cell {
            text-align: right !important;
        }
    }
</style>
<style lang="scss">// 有效样式
   .employee-table .el-table__body tr td:last-child{
        .cell {
            text-align: right !important;
        }
    }
</style>


其他踩坑

1,项目开发过程中能在手机上访问
2,全局Global.vue文件中,必须引用 axios和wx,才能使用post方法和wx配置
上一篇 下一篇

猜你喜欢

热点阅读