云链智安app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.scss 301B

1234567891011
  1. // #ifdef VUE3 || VUE2 && uniVersion >= 4.56
  2. @use "sass:math";
  3. // #endif
  4. @function divide($dividend, $divisor) {
  5. // #ifdef VUE3 || VUE2 && uniVersion >= 4.56
  6. @return math.div($dividend, $divisor);
  7. // #endif
  8. // #ifndef VUE3 || VUE2 && uniVersion >= 4.56
  9. @return $dividend / $divisor;
  10. // #endif
  11. }