bl-common-vue3 3.8.57 → 3.8.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "bl-common-vue3",
3
- "version": "3.8.57",
3
+ "version": "3.8.59",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
7
7
  "private": false,
8
- "sideEffects": ["**/*.css", "**/*.less", "**/*.vue"],
8
+ "sideEffects": [
9
+ "**/*.css",
10
+ "**/*.less",
11
+ "**/*.vue"
12
+ ],
9
13
  "scripts": {
10
14
  "lib": "vue-cli-service build --target lib --name vue3common --dest lib index.js",
11
15
  "serve": "vue-cli-service serve",
@@ -37,8 +41,7 @@
37
41
  "file-saver": "^2.0.5",
38
42
  "style-resources-loader": "^1.5.0"
39
43
  },
40
- "dependencies": {
41
- },
44
+ "dependencies": {},
42
45
  "devDependencies": {
43
46
  "@vue/cli-plugin-babel": "~4.5.13",
44
47
  "@vue/cli-plugin-eslint": "~4.5.13",
@@ -569,7 +569,7 @@ export default defineComponent({
569
569
  * @returns {string}
570
570
  */
571
571
  const getRoomAreaText = (dataRef) => {
572
- const areaValue = noDisabledLog ? utils.numberToPrecision(dataRef.build_area) : dataRef.showArea;
572
+ const areaValue = props.noDisabledLog ? utils.numberToPrecision(dataRef.build_area) : dataRef.showArea;
573
573
  return `${areaValue || 0}${commonAreaUnit}`;
574
574
  };
575
575