Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
1b71824d
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
356
Star
3
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uvue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
1b71824d
编写于
7月 05, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
v-if: new case, v-if-else
上级
cc4a8655
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
67 addition
and
16 deletion
+67
-16
App.vue
App.vue
+7
-0
pages/directive/v-if/v-if.test.js
pages/directive/v-if/v-if.test.js
+28
-7
pages/directive/v-if/v-if.uvue
pages/directive/v-if/v-if.uvue
+29
-6
pages/directive/v-model/counter.uvue
pages/directive/v-model/counter.uvue
+2
-2
pages/directive/v-model/v-model.uvue
pages/directive/v-model/v-model.uvue
+1
-1
未找到文件。
App.vue
浏览文件 @
1b71824d
...
...
@@ -111,4 +111,11 @@
padding
:
5px
0
;
border-bottom
:
1px
solid
#dfdfdf
;
}
.btn-view
{
margin
:
10px
0
;
padding
:
10px
;
border
:
1px
solid
#dfdfdf
;
border-radius
:
3px
;
}
</
style
>
\ No newline at end of file
pages/directive/v-if/v-if.test.js
浏览文件 @
1b71824d
...
...
@@ -6,20 +6,41 @@ describe('v-if', () => {
page
=
await
program
.
reLaunch
(
PAGE_PATH
)
await
page
.
waitFor
(
500
)
})
it
(
'
s
how-hide-switch
'
,
async
()
=>
{
it
(
'
s
witch-v-if
'
,
async
()
=>
{
const
btn_view
=
await
page
.
$
(
'
.view-click
'
)
const
element
s1
=
await
page
.
$$
(
'
.hello
'
)
expect
(
element
s
1
.
length
).
toBe
(
1
)
const
element
1
=
await
page
.
$$
(
'
.v-if-show-value
'
)
expect
(
element1
.
length
).
toBe
(
1
)
await
btn_view
.
tap
()
await
page
.
waitFor
(
50
)
const
element
s2
=
await
page
.
$$
(
'
.hello
'
)
expect
(
element
s
2
.
length
).
toBe
(
0
)
const
element
2
=
await
page
.
$$
(
'
.v-if-show-value
'
)
expect
(
element2
.
length
).
toBe
(
0
)
await
btn_view
.
tap
()
await
page
.
waitFor
(
50
)
const
elements3
=
await
page
.
$$
(
'
.hello
'
)
expect
(
elements3
.
length
).
toBe
(
1
)
const
element3
=
await
page
.
$$
(
'
.v-if-show-value
'
)
expect
(
element3
.
length
).
toBe
(
1
)
})
it
(
'
switch-v-if-v-else-if-v-else
'
,
async
()
=>
{
const
btn_view
=
await
page
.
$
(
'
.view-click-abc
'
)
const
element_a
=
await
page
.
$
(
'
.text-a
'
)
expect
(
await
element_a
.
text
()).
toBe
(
'
A
'
)
await
btn_view
.
tap
()
await
page
.
waitFor
(
50
)
const
element_b
=
await
page
.
$
(
'
.text-b
'
)
expect
(
await
element_b
.
text
()).
toBe
(
'
B
'
)
await
btn_view
.
tap
()
await
page
.
waitFor
(
50
)
const
element_c
=
await
page
.
$
(
'
.text-c
'
)
expect
(
await
element_c
.
text
()).
toBe
(
'
C
'
)
await
btn_view
.
tap
()
await
page
.
waitFor
(
50
)
const
element_not_abc
=
await
page
.
$
(
'
.text-not-a-b-c
'
)
expect
(
await
element_not_abc
.
text
()).
toBe
(
'
Not A/B/C
'
)
})
})
\ No newline at end of file
pages/directive/v-if/v-if.uvue
浏览文件 @
1b71824d
<template>
<view class="page">
<view class="split-title">v-if</view>
<view class="view-click" @click="onShowOrHide">show/hide</view>
<view class="hello" v-if="show">hello</view>
<view class="btn-view view-click" @click="onShowOrHide">Switch v-if</view>
<view class="v-if-show-value" v-if="show">show value</view>
<view class="split-title">v-if-else</view>
<view v-if="type === 'A'">
<text class="text-a">A</text>
</view>
<view v-else-if="type === 'B'">
<text class="text-b">B</text>
</view>
<view v-else-if="type === 'C'">
<text class="text-c">C</text>
</view>
<view v-else>
<text class="text-not-a-b-c">Not A/B/C</text>
</view>
<view class="btn-view view-click-abc" @click="switchABC">Switch A/B/C</view>
</view>
</template>
<script lang="ts">
let typeIndex = 0
const TypeList : Array<string> = ['A', 'B', 'C', 'D']
export default {
data() {
return {
show: true
show: true,
type: 'A'
}
},
methods: {
onShowOrHide() {
this.show = !this.show
},
switchABC() {
typeIndex++
if (typeIndex >= TypeList.length) {
typeIndex = 0
}
this.type = TypeList[typeIndex]
}
}
}
</script>
<style>
</style>
pages/directive/v-model/counter.uvue
浏览文件 @
1b71824d
<template>
<view>
<view>
子组件-count的值是
:{{number}}</view>
<view>
child-component-count
:{{number}}</view>
<button type="default" @click="add">+1</button>
</view>
</template>
...
...
@@ -16,7 +16,7 @@
emits: ['update:number'],
methods: {
add() {
this.$emit('update:number', this.number + 1)
//子组件通过this.$emit()方法修改number值
this.$emit('update:number', this.number + 1)
}
}
}
...
...
pages/directive/v-model/v-model.uvue
浏览文件 @
1b71824d
...
...
@@ -39,4 +39,4 @@
border: 1px solid #ccc;
border-radius: 5px;
}
</style>
\ No newline at end of file
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录