Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
2c6afff2
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
349
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看板
提交
2c6afff2
编写于
1月 25, 2024
作者:
M
mehaotian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 新增 teleprot 页面及示例
上级
8c1900b9
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
142 addition
and
3 deletion
+142
-3
pages.json
pages.json
+8
-0
pages/built-in-component/teleport/sub-container.uvue
pages/built-in-component/teleport/sub-container.uvue
+31
-0
pages/built-in-component/teleport/teleport.test.js
pages/built-in-component/teleport/teleport.test.js
+17
-0
pages/built-in-component/teleport/teleport.uvue
pages/built-in-component/teleport/teleport.uvue
+79
-0
pages/tab-bar/options-api.uvue
pages/tab-bar/options-api.uvue
+7
-3
未找到文件。
pages.json
浏览文件 @
2c6afff2
...
...
@@ -622,6 +622,14 @@
{
"navigationBarTitleText"
:
"依赖注入"
}
},
{
"path"
:
"pages/built-in-component/teleport/teleport"
,
"style"
:
{
"navigationBarTitleText"
:
"teleport"
,
"enablePullDownRefresh"
:
false
}
}
],
"tabBar"
:
{
...
...
pages/built-in-component/teleport/sub-container.uvue
0 → 100644
浏览文件 @
2c6afff2
<template>
<view id="teleport" class="sub-container">
<view>
<text class="text">红色区域为子组件</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.sub-container {
background-color:red;
height:200px;
padding:10px;
}
.text {
color:#fff;
}
</style>
\ No newline at end of file
pages/built-in-component/teleport/teleport.test.js
0 → 100644
浏览文件 @
2c6afff2
const
PAGE_PATH
=
'
/pages/built-in-component/teleport/teleport
'
describe
(
'
teleport
'
,
()
=>
{
let
page
=
null
beforeAll
(
async
()
=>
{
page
=
await
program
.
reLaunch
(
PAGE_PATH
)
await
page
.
waitFor
(
'
view
'
)
})
it
(
'
teleport
'
,
async
()
=>
{
await
page
.
waitFor
(
500
)
const
image
=
await
program
.
screenshot
({
fullPage
:
true
});
expect
(
image
).
toMatchImageSnapshot
();
})
})
pages/built-in-component/teleport/teleport.uvue
0 → 100644
浏览文件 @
2c6afff2
<template>
<!-- #ifdef APP -->
<scroll-view style="flex:1">
<!-- #endif -->
<view id="container" class="container">
<text class="text">.container 区域</text>
<!-- <subContainer></subContainer> -->
<view id="content1" class="content content-1">
<text class="text">content1 区域</text>
</view>
<view id="content2" class="content content-2">
<text class="text">content2 区域</text>
</view>
<!-- <button class="btn" @click="changePosition">点击穿梭</button> -->
<teleport v-if="show" to="#content1" :disabled="disabled">
<view class="send-content">
<text class="send-content-text">内容在.container中,使用teleport在#content1元素中展示</text>
</view>
</teleport>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script>
// import subContainer from './sub-container.uvue'
export default {
// components: { subContainer },
data() {
return {
to: 'content1',
disabled: false,
showingString: '穿梭内容在 body 中',
show: false
}
},
onReady() {
// 需要等内容挂载后,teleport才生效
this.show = true
},
methods: {
changePosition() {
this.to = '#content1'
}
}
}
</script>
<style>
.container {
background-color: #f5f5f5;
border: 1px #ccc solid;
margin: 5px;
padding: 10px;
}
.text {
margin: 5px 0;
}
.content {
height: 120px;
border: 1px #ccc solid;
margin: 5px;
padding: 10px;
}
.send-content {
padding: 5px;
background-color: #ff5a5f;
height: 50px;
}
.send-content-text {
color: #fff;
font-size: 12px;
}
</style>
\ No newline at end of file
pages/tab-bar/options-api.uvue
浏览文件 @
2c6afff2
...
...
@@ -64,9 +64,13 @@
name: '内置组件',
open: false,
pages: [
{
name: 'keepAlive',
url: 'keep-alive',
{
name: 'keepAlive',
url: 'keep-alive',
enable: true,
},{
name: 'teleport',
url: 'teleport',
enable: true,
},
] as PageItem[],
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录