table{td {border: 1.5px solid #ccc;font-family: PingFang SC, PingFang SC;font-weight: 400;font-size: 24px;color: #4E5464;line-height: 28px;text-align: center;empty-cells: show;padding: 20px 10px;height: 80px;white-space: nowrap;}
}
table的td样式,需要设置成1.5px,手机上才会显示出边框,不然不显示边框。
css: {postcss: {plugins: [require('postcss-nesting'),tailwindcss,autoprefixer,postCssPxToRem({// // 自适应,px>rem转换// rootValue: 75, // 75表示750设计稿,37.5表示375设计稿// propList: ['*'], // 需要转换的属性,这里选择全部都进行转换// selectorBlackList: ['norem', 'van'], // 过滤掉norem-开头的class,不进行rem转换rootValue({ file }) {return file.includes('vant') ? 37.5 : 75},propList: ['*']})]}}