Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
d8c545e7
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
350
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看板
提交
d8c545e7
编写于
12月 26, 2023
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(props): 补充不同组件同名 props default 函数默认值互相影响测试例 #374
上级
eb04572b
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
89 addition
and
136 deletion
+89
-136
pages/component-instance/props/Foo.uvue
pages/component-instance/props/Foo.uvue
+18
-0
pages/component-instance/props/check-type.uvue
pages/component-instance/props/check-type.uvue
+63
-86
pages/component-instance/props/props.test.js
pages/component-instance/props/props.test.js
+5
-0
pages/component-instance/props/props.uvue
pages/component-instance/props/props.uvue
+3
-8
pages/component-instance/props/simple.uvue
pages/component-instance/props/simple.uvue
+0
-42
未找到文件。
pages/component-instance/props/Foo.uvue
0 → 100644
浏览文件 @
d8c545e7
<template>
<view class="component">
<text id="foo-arr">arr: {{arr}}</text>
</view>
</template>
<script>
export default {
props: {
arr: {
type: Array as PropType<number[]>,
default: () : Array<number> => {
return [1, 2, 3]
}
}
}
}
</script>
\ No newline at end of file
pages/component-instance/props/check-type.uvue
浏览文件 @
d8c545e7
<template>
<view class="component">
<view class="row">
<text>string: </text><text class="string">{{str}}</text>
</view>
<view class="row">
<text>num: </text><text class="number">{{num}}</text>
</view>
<view class="row">
<text>bool: </text><text class="boolean">{{bool}}</text>
</view>
<view class="row">
<text>ArrayString: </text>
<text class="array-string" v-for="str in arrayString">{{str}}</text>
</view>
<view class="row">
<text>obj.count: </text>
<text class="object">{{obj.count}}</text>
</view>
<!-- <view class="row">-->
<!-- <text>obj.key: </text><text>{{obj.key}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>date timestamp: </text><text>{{date.now()}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>function result: </text><text>{{func()}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>symbol: </text><text>{{symbol}}</text>-->
<!-- </view>-->
</view>
</template>
<script>
import { type PropType } from 'vue'
export type CusomObject = { count : number }
export default {
props: {
str: {
type: String,
default: 'default value'
},
num: {
type: Number,
default: 0
},
bool: {
type: Boolean,
default: false
},
arrayString: {
type: Array as PropType<string[]>,
default: () : Array<string> => {
return []
}
},
obj: {
type: Object as PropType<CusomObject>,
default: () : CusomObject => ({ count: 0 } as CusomObject)
},
// date: {
// type: Date,
// default: () => {
// return new Date()
// }
// },
// func: {
// type: Function,
// default: () => {
// return () => {}
// }
// },
// symbol: {
// type: Symbol,
// default: Symbol('default')
// },
}
}
</script>
<style scoped>
</style>
\ No newline at end of file
<template>
<view class="component">
<view class="row">
<text>string: </text><text class="string">{{str}}</text>
</view>
<view class="row">
<text>num: </text><text class="number">{{num}}</text>
</view>
<view class="row">
<text>bool: </text><text class="boolean">{{bool}}</text>
</view>
<view class="row">
<text>ArrayString: </text>
<text class="array-string" v-for="str in arrayString">{{str}}</text>
</view>
<view class="row">
<text>obj.count: </text>
<text class="object">{{obj.count}}</text>
</view>
<view class="row">
<text id="check-type-arr">arr: {{arr}}</text>
</view>
</view>
</template>
<script>
import { type PropType } from 'vue'
export type CusomObject = { count : number }
export default {
props: {
str: {
type: String,
default: 'default value'
},
num: {
type: Number,
default: 0
},
bool: {
type: Boolean,
default: false
},
arrayString: {
type: Array as PropType<string[]>,
default: () : Array<string> => {
return []
}
},
obj: {
type: Object as PropType<CusomObject>,
default: () : CusomObject => ({ count: 0 } as CusomObject)
},
arr: {
type: Array as PropType<string[]>,
default: () : Array<string> => {
return ['a', 'b', 'c']
}
}
}
}
</script>
\ No newline at end of file
pages/component-instance/props/props.test.js
浏览文件 @
d8c545e7
...
...
@@ -19,5 +19,10 @@ describe('$props', () => {
expect
(
await
boolean
.
text
()).
toBe
(
'
true
'
)
expect
(
await
arrayString
.
text
()).
toBe
(
'
str1
'
)
expect
(
await
object
.
text
()).
toBe
(
'
1
'
)
const
checkTypeArr
=
await
page
.
$
(
'
#check-type-arr
'
)
expect
((
await
checkTypeArr
.
text
()).
replaceAll
(
'
\n
'
,
''
)).
toBe
(
'
arr: ["a","b","c"]
'
)
const
fooArr
=
await
page
.
$
(
'
#foo-arr
'
)
expect
((
await
fooArr
.
text
()).
replaceAll
(
'
\n
'
,
''
)).
toBe
(
'
arr: [1,2,3]
'
)
})
})
pages/component-instance/props/props.uvue
浏览文件 @
d8c545e7
<template>
<view class="page">
<check-type str="abcd" :num="12345" :bool="true" :obj="obj" :arrayString="arrayString"></check-type>
<!-- <view>简易类型</view>-->
<!-- <simple-->
<!-- str="abcd"-->
<!-- :num="12345"-->
<!-- :bool="true"-->
<!-- ></simple>-->
<Foo />
</view>
</template>
<script>
import checkType, { CusomObject } from "./check-type.uvue";
// import simple from "./simple
.uvue";
import Foo from "./Foo
.uvue";
export default {
components: {
checkType,
// simple
Foo
},
data() {
return {
...
...
pages/component-instance/props/simple.uvue
已删除
100644 → 0
浏览文件 @
eb04572b
<template>
<view class="component">
<view class="row">
<text>string: </text><text>{{str}}</text>
</view>
<view class="row">
<text>num: </text><text>{{num}}</text>
</view>
<view class="row">
<text>bool: </text><text>{{bool}}</text>
</view>
<!-- <view class="row">-->
<!-- <text>arr: </text>-->
<!-- [<text v-for="text in arr">{{text}},</text>]-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>obj.key: </text><text>{{obj.key}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>obj.key: </text><text>{{obj.key}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>date timestamp: </text><text>{{date.now()}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>function result: </text><text>{{func()}}</text>-->
<!-- </view>-->
<!-- <view class="row">-->
<!-- <text>symbol: </text><text>{{symbol}}</text>-->
<!-- </view>-->
</view>
</template>
<script>
type IProps = {
str: string
}
export default {
props: ['str', 'num', 'bool'],
}
</script>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录