Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
71a9a210
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看板
提交
71a9a210
编写于
4月 23, 2024
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(directive): v-text
上级
c678b400
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
109 addition
and
1 deletion
+109
-1
pages.json
pages.json
+14
-0
pages/directive/v-text/v-text-composition.uvue
pages/directive/v-text/v-text-composition.uvue
+17
-0
pages/directive/v-text/v-text-options.uvue
pages/directive/v-text/v-text-options.uvue
+23
-0
pages/directive/v-text/v-text.test.js
pages/directive/v-text/v-text.test.js
+32
-0
pages/index/index.uvue
pages/index/index.uvue
+22
-0
refactor_options-API-composition-API-correspondence.md
refactor_options-API-composition-API-correspondence.md
+1
-1
未找到文件。
pages.json
浏览文件 @
71a9a210
...
...
@@ -227,6 +227,20 @@
}
},
//
#endif
//
#ifdef
WEB
{
"path"
:
"pages/directive/v-text/v-text-options"
,
"style"
:
{
"navigationBarTitleText"
:
"v-text 选项式 API"
}
},
{
"path"
:
"pages/directive/v-text/v-text-composition"
,
"style"
:
{
"navigationBarTitleText"
:
"v-text 组合式 API"
}
},
//
#endif
{
...
...
pages/directive/v-text/v-text-composition.uvue
0 → 100644
浏览文件 @
71a9a210
<template>
<view class="page">
<view class="flex flex-row justify-between mb-10">
<text>v-txt for text:</text>
<text id="v-text-text" v-text="vTextForText"></text>
</view>
<view class="flex flex-row justify-between mb-10">
<text>v-txt for view:</text>
<view id="v-text-view" v-text="vTextForView"></view>
</view>
</view>
</template>
<script setup lang="uts">
const vTextForText = ref('v-text for text')
const vTextForView = ref('v-text for view')
</script>
pages/directive/v-text/v-text-options.uvue
0 → 100644
浏览文件 @
71a9a210
<template>
<view class="page">
<view class="flex flex-row justify-between mb-10">
<text>v-txt for text:</text>
<text id="v-text-text" v-text="vTextForText"></text>
</view>
<view class="flex flex-row justify-between mb-10">
<text>v-txt for view:</text>
<view id="v-text-view" v-text="vTextForView"></view>
</view>
</view>
</template>
<script lang="uts">
export default {
data() {
return {
vTextForText: 'v-text for text',
vTextForView: 'v-text for view',
}
}
}
</script>
pages/directive/v-text/v-text.test.js
0 → 100644
浏览文件 @
71a9a210
const
OPTIONS_PAGE_PATH
=
'
/pages/directive/v-text/v-text-options
'
const
COMPOSITION_PAGE_PATH
=
'
/pages/directive/v-text/v-text-composition
'
describe
(
'
v-text
'
,
()
=>
{
if
(
!
process
.
env
.
uniTestPlatformInfo
.
startsWith
(
'
web
'
))
{
// TODO: 仅 web 支持
it
(
'
web
'
,
async
()
=>
{
expect
(
1
).
toBe
(
1
)
})
return
}
let
page
const
test
=
async
(
pagePath
)
=>
{
page
=
await
program
.
reLaunch
(
pagePath
)
await
page
.
waitFor
(
'
view
'
)
const
vTextText
=
await
page
.
$
(
'
#v-text-text
'
)
expect
(
await
vTextText
.
text
()).
toBe
(
'
v-text for text
'
)
const
vTextView
=
await
page
.
$
(
'
#v-text-view
'
)
expect
(
await
vTextView
.
text
()).
toBe
(
'
v-text for view
'
)
}
it
(
'
v-text options API
'
,
async
()
=>
{
await
test
(
OPTIONS_PAGE_PATH
)
})
it
(
'
v-text composition API
'
,
async
()
=>
{
await
test
(
COMPOSITION_PAGE_PATH
)
})
})
pages/index/index.uvue
浏览文件 @
71a9a210
...
...
@@ -768,6 +768,28 @@ export default {
},
]
},
{
id: 'v-text',
name: 'v-text',
children: [
{
id: 'v-text-options',
name: 'v-text 选项式 API',
url: 'v-text-options',
// #ifdef APP
enable: false
// #endif
},
{
id: 'v-text-composition',
name: 'v-text 组合式 API',
url: 'v-text-composition',
// #ifdef APP
enable: false
// #endif
},
]
},
]
},
{
...
...
refactor_options-API-composition-API-correspondence.md
浏览文件 @
71a9a210
...
...
@@ -164,7 +164,7 @@ function transform(fileInfo, api) {
-
[x] v-pre
-
[x] v-once
-
[x] v-memo
-
[
] v-text 暂不支持
-
[
x] v-text
-
[ ] v-cloak 暂不支持
## lifecycle
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录