pxToRem.js 103 B

1234567
  1. export const pxToRemMixin = {
  2. methods: {
  3. pxToRem(px) {
  4. return `${px / 100}rem`
  5. }
  6. }
  7. }