Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
66a9d876
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
376
Star
3
Fork
8
代码
文件
提交
分支
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看板
提交
66a9d876
编写于
5月 09, 2024
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(render function): withDirectives
上级
139b1b71
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
107 addition
and
0 deletion
+107
-0
pages.json
pages.json
+14
-0
pages/index/index.uvue
pages/index/index.uvue
+18
-0
pages/render-function/withDirectives/withDirectives-composition.uvue
...r-function/withDirectives/withDirectives-composition.uvue
+26
-0
pages/render-function/withDirectives/withDirectives-options.uvue
...ender-function/withDirectives/withDirectives-options.uvue
+28
-0
pages/render-function/withDirectives/withDirectives.test.js
pages/render-function/withDirectives/withDirectives.test.js
+21
-0
未找到文件。
pages.json
浏览文件 @
66a9d876
...
...
@@ -764,6 +764,20 @@
"navigationBarTitleText"
:
"resolveComponent 组合式 API"
}
},
//
#ifndef
APP-ANDROID
{
"path"
:
"pages/render-function/withDirectives/withDirectives-options"
,
"style"
:
{
"navigationBarTitleText"
:
"withDirectives 选项式 API"
}
},
{
"path"
:
"pages/render-function/withDirectives/withDirectives-composition"
,
"style"
:
{
"navigationBarTitleText"
:
"resolveComponent 组合式 API"
}
},
//
#endif
{
"path"
:
"pages/examples/unrecognized-component/unrecognized-component"
,
"style"
:
{
...
...
pages/index/index.uvue
浏览文件 @
66a9d876
...
...
@@ -1041,7 +1041,25 @@ export default {
url: 'resolveComponent-composition'
},
]
},
// #ifndef APP-ANDROID
{
id: 'withDirectives',
name: 'withDirectives',
children: [
{
id: 'withDirectives-options',
name: 'withDirectives 选项式 API',
url: 'withDirectives-options'
},
{
id: 'withDirectives-composition',
name: 'withDirectives 组合式 API',
url: 'withDirectives-composition'
},
]
}
// #endif
] as Page[]
},
{
...
...
pages/render-function/withDirectives/withDirectives-composition.uvue
0 → 100644
浏览文件 @
66a9d876
<script setup lang="ts">
import { withDirectives } from 'vue'
import type { DirectiveBinding } from 'vue'
defineOptions({
data() {
return {
isMounted: false
}
},
render(instance : ComponentPublicInstance) : VNode {
const customDirective = {
mounted(el : UniElement, binding : DirectiveBinding, vnode : VNode, prevVNode: VNode | null) {
instance.$data['isMounted'] = true
}
} as Directive
return h('view', { class: 'page' }, [
withDirectives(h('text', 'Hello World'), [[customDirective]]),
h('view', { class: 'mt-10 flex flex-row justify-between' }, [
h('text', {}, `isMounted:`),
h('text', {}, `${instance.$data['isMounted']}`),
])
])
}
})
</script>
\ No newline at end of file
pages/render-function/withDirectives/withDirectives-options.uvue
0 → 100644
浏览文件 @
66a9d876
<script lang="uts">
import {withDirectives } from 'vue'
import type { DirectiveBinding } from 'vue'
export default {
data(){
return {
isMounted: false
}
},
// android 端暂不支持
// render 写入 instance 参数编译报错 error: '$render' overrides nothing
render(instance: ComponentPublicInstance):VNode {
const customDirective = {
mounted(el : UniElement, binding : DirectiveBinding, vnode : VNode, prevVNode: VNode | null) {
instance.$data['isMounted'] = true
}
} as Directive
return h('view', { class: 'page' }, [
withDirectives(h('text', 'Hello World'), [[customDirective]]),
h('view', { class: 'mt-10 flex flex-row justify-between' }, [
h('text', {}, `isMounted:`),
h('text', {}, `${instance.$data['isMounted']}`),
])
])
}
}
</script>
pages/render-function/withDirectives/withDirectives.test.js
0 → 100644
浏览文件 @
66a9d876
const
OPTIONS_PAGE_PATH
=
'
/pages/render-function/withDirectives/withDirectives-options
'
const
COMPOSITION_PAGE_PATH
=
'
/pages/render-function/withDirectives/withDirectives-composition
'
describe
(
'
withDirectives
'
,
()
=>
{
let
page
=
null
const
test
=
async
(
pagePath
)
=>
{
page
=
await
program
.
reLaunch
(
pagePath
)
await
page
.
waitFor
(
1000
)
const
image
=
await
program
.
screenshot
();
expect
(
image
).
toSaveImageSnapshot
();
}
it
(
'
withDirectives options API
'
,
async
()
=>
{
await
test
(
OPTIONS_PAGE_PATH
)
})
it
(
'
withDirectives composition API
'
,
async
()
=>
{
await
test
(
COMPOSITION_PAGE_PATH
)
})
})
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录