create-weapp-vite 2.0.57 → 2.0.58
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 +1 -1
- package/templates/wevu-tdesign/package.json +1 -1
- package/templates/wevu-tdesign/src/layouts/admin.vue +0 -6
- package/templates/wevu-tdesign/src/layouts/default.vue +0 -6
- package/templates/wevu-tdesign/src/pages/ability/index.vue +2 -0
- package/templates/wevu-tdesign/src/pages/form/index.vue +1 -0
- package/templates/wevu-tdesign/src/pages/index/index.vue +1 -0
- package/templates/wevu-tdesign/src/pages/layouts/index.vue +1 -0
- package/templates/wevu-tdesign/src/pages/list/index.vue +1 -0
package/package.json
CHANGED
|
@@ -6,10 +6,6 @@ const props = defineProps<{
|
|
|
6
6
|
|
|
7
7
|
defineComponentJson({
|
|
8
8
|
component: true,
|
|
9
|
-
usingComponents: {
|
|
10
|
-
't-dialog': 'tdesign-miniprogram/dialog/dialog',
|
|
11
|
-
't-toast': 'tdesign-miniprogram/toast/toast',
|
|
12
|
-
},
|
|
13
9
|
})
|
|
14
10
|
</script>
|
|
15
11
|
|
|
@@ -29,8 +25,6 @@ defineComponentJson({
|
|
|
29
25
|
<view class="pb-[32rpx]">
|
|
30
26
|
<slot />
|
|
31
27
|
</view>
|
|
32
|
-
<t-toast id="t-toast" />
|
|
33
|
-
<t-dialog id="t-dialog" />
|
|
34
28
|
</view>
|
|
35
29
|
</template>
|
|
36
30
|
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
defineComponentJson({
|
|
3
3
|
component: true,
|
|
4
|
-
usingComponents: {
|
|
5
|
-
't-dialog': 'tdesign-miniprogram/dialog/dialog',
|
|
6
|
-
't-toast': 'tdesign-miniprogram/toast/toast',
|
|
7
|
-
},
|
|
8
4
|
})
|
|
9
5
|
</script>
|
|
10
6
|
|
|
11
7
|
<template>
|
|
12
8
|
<view class="layout-default">
|
|
13
9
|
<slot />
|
|
14
|
-
<t-toast id="t-toast" />
|
|
15
|
-
<t-dialog id="t-dialog" />
|
|
16
10
|
</view>
|
|
17
11
|
</template>
|
|
18
12
|
|