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: ['*']})]}}