File tree 11 files changed +7568
-4569
lines changed
11 files changed +7568
-4569
lines changed Original file line number Diff line number Diff line change 9
9
release :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v4
13
13
with :
14
14
fetch-depth : 0
15
15
16
16
- name : Setup node
17
- uses : actions/setup-node@v2
17
+ uses : actions/setup-node@v4
18
18
with :
19
- node-version : ' 16 '
19
+ node-version : latest
20
20
registry-url : https://registry.npmjs.org/
21
21
22
22
- name : Setup pnpm
23
- uses : pnpm/action-setup@v2
23
+ uses : pnpm/action-setup@v4
24
24
with :
25
25
version : latest
26
26
Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
os : [ubuntu-latest, windows-latest]
12
- node-version : [16, 18 ]
12
+ node-version : [18, latest ]
13
13
fail-fast : false
14
14
15
15
runs-on : ${{ matrix.os }}
16
16
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
20
- - uses : pnpm/action-setup@v2
20
+ - uses : pnpm/action-setup@v4
21
21
name : Install pnpm
22
22
with :
23
23
version : latest
24
24
25
- - uses : actions/setup-node@v2
25
+ - uses : actions/setup-node@v4
26
26
with :
27
27
node-version : ${{ matrix.node-version }}
28
28
cache : pnpm
Original file line number Diff line number Diff line change 38
38
"vant" : " >=4"
39
39
},
40
40
"dependencies" : {
41
- "@nuxt/kit" : " ^3.7.0 " ,
41
+ "@nuxt/kit" : " ^3.12.2 " ,
42
42
"magic-string" : " ^0.29.0" ,
43
- "unplugin" : " ^1.3.1 "
43
+ "unplugin" : " ^1.10.2 "
44
44
},
45
45
"devDependencies" : {
46
- "@nuxt/module-builder" : " ^0.5.0 " ,
47
- "@nuxt/schema" : " ^3.7.0 " ,
48
- "@nuxtjs/eslint-config-typescript" : " ^12.0 .0" ,
49
- "@types/node" : " ^18.15.13 " ,
50
- "eslint" : " ^8.46 .0" ,
51
- "nuxt" : " ^3.7.0 " ,
52
- "typescript" : " ^5.1.6 " ,
53
- "vant" : " ^4.6.6 " ,
54
- "vue" : " ^3.3.4 "
46
+ "@nuxt/module-builder" : " ^0.5.5 " ,
47
+ "@nuxt/schema" : " ^3.12.2 " ,
48
+ "@nuxtjs/eslint-config-typescript" : " ^12.1 .0" ,
49
+ "@types/node" : " ^18.19.39 " ,
50
+ "eslint" : " ^8.57 .0" ,
51
+ "nuxt" : " ^3.12.2 " ,
52
+ "typescript" : " ^5.5.2 " ,
53
+ "vant" : " ^4.9.1 " ,
54
+ "vue" : " ^3.4.31 "
55
55
},
56
56
"publishConfig" : {
57
57
"access" : " public" ,
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ onMounted(() => {
169
169
@close =" showCascader = false"
170
170
/>
171
171
</van-popup >
172
- <van-floating-panel
172
+ <!-- < van-floating-panel
173
173
v-model:show="showFloatingPanel"
174
174
:content-draggable="false"
175
175
:lock-scroll="true"
@@ -178,7 +178,7 @@ onMounted(() => {
178
178
<van-cell-group>
179
179
<van-cell v-for=" (n, i) in 150" :key="i" :title="n" :value="n" />
180
180
</van-cell-group>
181
- </van-floating-panel >
181
+ </van-floating-panel> -->
182
182
183
183
<van-back-top bottom =" 70" />
184
184
<van-sticky position =" bottom" >
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { defineNuxtConfig } from 'nuxt/config'
2
2
import Vant from '..'
3
3
4
4
export default defineNuxtConfig ( {
5
+ devtools : true ,
5
6
modules : [ Vant ] ,
6
7
vant : {
7
8
lazyload : true
You can’t perform that action at this time.
0 commit comments