合同小程序前端代码仓库
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.

11 lines
211 B

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