Browse Source

fix: dts修改 (#1971)

* fix: 地址icon修改

* fix: 组件icon问题修改

* fix: 地址组件修改

* fix: 地址删除props

* feat: 组件dts修改

Co-authored-by: yangxiaolu3 <yangxiaolu3@jd.com>
yangxiaolu1993 3 years ago
parent
commit
37b65d5e88

+ 1 - 3
src/packages/__VUE/audio/index.vue

@@ -63,7 +63,6 @@
 import { toRefs, ref, onMounted, reactive, watch, provide } from 'vue';
 import { createComponent } from '@/packages/utils/create';
 import { Service } from '@nutui/icons-vue';
-import Range from '../range/index.vue';
 const { componentName, create } = createComponent('audio');
 
 export default create({
@@ -107,8 +106,7 @@ export default create({
     }
   },
   components: {
-    Service,
-    [Range.name]: Range
+    Service
   },
   emits: ['fastBack', 'play', 'forward', 'ended', 'changeProgress', 'mute', 'can-play'],
 

+ 0 - 2
src/packages/__VUE/tour/index.taro.vue

@@ -70,7 +70,6 @@ import { createComponent } from '@/packages/utils/create';
 import { useTaroRect } from '@/packages/utils/useTaroRect';
 import { Close } from '@nutui/icons-vue-taro';
 import Taro from '@tarojs/taro';
-import Popover from '../popover/index.taro.vue';
 
 interface StepOptions {
   target: Element;
@@ -82,7 +81,6 @@ interface StepOptions {
 const { create } = createComponent('tour');
 export default create({
   components: {
-    [Popover.name]: Popover,
     Close
   },
   props: {

+ 0 - 2
src/packages/__VUE/tour/index.vue

@@ -69,7 +69,6 @@ import { PopoverLocation } from '../popover/type';
 import { createComponent } from '@/packages/utils/create';
 import { useRect } from '@/packages/utils/useRect';
 import { Close } from '@nutui/icons-vue';
-import Popover from '../popover/index.vue';
 
 interface StepOptions {
   target: Element;
@@ -81,7 +80,6 @@ interface StepOptions {
 const { create } = createComponent('tour');
 export default create({
   components: {
-    [Popover.name]: Popover,
     Close
   },
   props: {

+ 6 - 29
src/sites/mobile-taro/vue/src/project.config.json

@@ -1,7 +1,8 @@
 {
   "description": "项目配置文件",
   "packOptions": {
-    "ignore": []
+    "ignore": [],
+    "include": []
   },
   "setting": {
     "urlCheck": true,
@@ -45,33 +46,9 @@
   "libVersion": "2.24.4",
   "appid": "wx9ac45039b7813c7d",
   "projectname": "src",
-  "debugOptions": {
-    "hidedInDevtools": []
-  },
-  "scripts": {},
-  "staticServerOptions": {
-    "baseURL": "",
-    "servePath": ""
-  },
-  "isGameTourist": false,
-  "condition": {
-    "search": {
-      "list": []
-    },
-    "conversation": {
-      "list": []
-    },
-    "game": {
-      "list": []
-    },
-    "plugin": {
-      "list": []
-    },
-    "gamePlugin": {
-      "list": []
-    },
-    "miniprogram": {
-      "list": []
-    }
+  "condition": {},
+  "editorSetting": {
+    "tabIndent": "insertSpaces",
+    "tabSize": 2
   }
 }

+ 7 - 0
src/sites/mobile-taro/vue/src/project.private.config.json

@@ -0,0 +1,7 @@
+{
+  "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
+  "projectname": "src",
+  "setting": {
+    "compileHotReLoad": true
+  }
+}