Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
8fe21e4d
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
355
Star
2
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看板
提交
8fe21e4d
编写于
11月 24, 2024
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 补充自定义组件绑定 v-show 示例及测试 issue:13061
上级
23f6dcc4
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
76 addition
and
56 deletion
+76
-56
pages/directive/v-show/Foo.uvue
pages/directive/v-show/Foo.uvue
+5
-0
pages/directive/v-show/v-show-composition.uvue
pages/directive/v-show/v-show-composition.uvue
+47
-42
pages/directive/v-show/v-show-options.uvue
pages/directive/v-show/v-show-options.uvue
+20
-14
pages/directive/v-show/v-show.test.js
pages/directive/v-show/v-show.test.js
+4
-0
未找到文件。
pages/directive/v-show/Foo.uvue
0 → 100644
浏览文件 @
8fe21e4d
<template>
<view id="foo">
component Foo
</view>
</template>
pages/directive/v-show/v-show-composition.uvue
浏览文件 @
8fe21e4d
<template>
<view class="page">
<button id="toggle-btn" @click="toggleShow">toggle show/hide</button>
<text>点击上方按钮,切换下方 view 显示/隐藏</text>
<text>show default true: {{dataInfo.showDefaultTrue}}</text>
<view class="mt-10 default-true" id="v-show-element-default-true" v-show="dataInfo.showDefaultTrue"></view>
<text>show default false: {{dataInfo.showDefaultFalse}}</text>
<template>
<view class="page">
<button id="toggle-btn" @click="toggleShow">toggle show/hide</button>
<text>点击上方按钮,切换下方 view 显示/隐藏</text>
<text>show default true: {{dataInfo.showDefaultTrue}}</text>
<view class="mt-10 default-true" id="v-show-element-default-true" v-show="dataInfo.showDefaultTrue"></view>
<text>show default false: {{dataInfo.showDefaultFalse}}</text>
<view class="mt-10 default-false" id="v-show-element-default-false" v-show="dataInfo.showDefaultFalse"></view>
</view>
</template>
<script setup lang="uts">
type DataInfo = {
showDefaultTrue : boolean
showDefaultFalse : boolean
}
const dataInfo = reactive({
showDefaultTrue: true,
showDefaultFalse: false
} as DataInfo)
const toggleShow = () => {
dataInfo.showDefaultTrue = !dataInfo.showDefaultTrue
dataInfo.showDefaultFalse = !dataInfo.showDefaultFalse
}
defineExpose({
dataInfo
})
</script>
<style>
.default-true,
.default-false{
display: flex;
width: 100px;
height: 50px;
<Foo v-show="dataInfo.showDefaultFalse" />
</view>
</template>
<script setup lang="uts">
import Foo from './Foo.uvue'
type DataInfo = {
showDefaultTrue : boolean
showDefaultFalse : boolean
}
const dataInfo = reactive({
showDefaultTrue: true,
showDefaultFalse: false
} as DataInfo)
const toggleShow = () => {
dataInfo.showDefaultTrue = !dataInfo.showDefaultTrue
dataInfo.showDefaultFalse = !dataInfo.showDefaultFalse
}
.default-true {
background-color: greenyellow;
}
.default-false {
background-color: antiquewhite;
defineExpose({
dataInfo
})
</script>
<style>
.default-true,
.default-false {
display: flex;
width: 100px;
height: 50px;
}
.default-true {
background-color: greenyellow;
}
.default-false {
background-color: antiquewhite;
}
</style>
\ No newline at end of file
pages/directive/v-show/v-show-options.uvue
浏览文件 @
8fe21e4d
<template>
<view class="page">
<button id="toggle-btn" @click="toggleShow">toggle show/hide</button>
<text>点击上方按钮,切换下方 view 显示/隐藏</text>
<text>show default true: {{dataInfo.showDefaultTrue}}</text>
<text>点击上方按钮,切换下方 view 显示/隐藏</text>
<text>show default true: {{dataInfo.showDefaultTrue}}</text>
<view class="mt-10 default-true" id="v-show-element-default-true" v-show="dataInfo.showDefaultTrue"></view>
<text>show default false: {{dataInfo.showDefaultFalse}}</text>
<view class="mt-10 default-false" id="v-show-element-default-false" v-show="dataInfo.showDefaultFalse"></view>
<view class="mt-10 default-false" id="v-show-element-default-false" v-show="dataInfo.showDefaultFalse"></view>
<Foo v-show="dataInfo.showDefaultFalse" />
</view>
</template>
<script lang="uts">
import Foo from './Foo.uvue'
type DataInfo = {
showDefaultTrue : boolean
showDefaultFalse : boolean
}
export default {
components: { Foo },
data() {
return {
dataInfo: {
...
...
@@ -33,17 +37,19 @@
}
</script>
<style>
.default-true,
.default-false{
display: flex;
width: 100px;
height: 50px;
<style>
.default-true,
.default-false {
display: flex;
width: 100px;
height: 50px;
}
.default-true {
background-color: greenyellow;
}
.default-true {
background-color: greenyellow;
}
.default-false {
background-color: antiquewhite;
.default-false {
background-color: antiquewhite;
}
</style>
\ No newline at end of file
pages/directive/v-show/v-show.test.js
浏览文件 @
8fe21e4d
...
...
@@ -13,6 +13,8 @@ describe('v-show', () => {
expect
(
await
vShowElementDefaultTrue
.
style
(
'
display
'
)).
toBe
(
'
flex
'
)
const
vShowElementDefaultFalse
=
await
page
.
$
(
'
#v-show-element-default-false
'
)
expect
(
await
vShowElementDefaultFalse
.
style
(
'
display
'
)).
toBe
(
'
none
'
)
const
foo
=
await
page
.
$
(
'
#foo
'
)
expect
(
await
foo
.
style
(
'
display
'
)).
toBe
(
'
none
'
)
const
toggle
=
await
page
.
$
(
'
#toggle-btn
'
)
await
toggle
.
tap
()
...
...
@@ -22,6 +24,7 @@ describe('v-show', () => {
expect
(
dataInfo
.
showDefaultFalse
).
toBe
(
true
)
expect
(
await
vShowElementDefaultTrue
.
style
(
'
display
'
)).
toBe
(
'
none
'
)
expect
(
await
vShowElementDefaultFalse
.
style
(
'
display
'
)).
toBe
(
'
flex
'
)
expect
(
await
foo
.
style
(
'
display
'
)).
toBe
(
'
flex
'
)
await
toggle
.
tap
()
dataInfo
=
await
page
.
data
(
'
dataInfo
'
)
...
...
@@ -29,6 +32,7 @@ describe('v-show', () => {
expect
(
dataInfo
.
showDefaultFalse
).
toBe
(
false
)
expect
(
await
vShowElementDefaultTrue
.
style
(
'
display
'
)).
toBe
(
'
flex
'
)
expect
(
await
vShowElementDefaultFalse
.
style
(
'
display
'
)).
toBe
(
'
none
'
)
expect
(
await
foo
.
style
(
'
display
'
)).
toBe
(
'
none
'
)
}
it
(
'
v-show options API
'
,
async
()
=>
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录