Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
a22113ef
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看板
提交
a22113ef
编写于
1月 31, 2024
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test: 增加 easycom 仅引用类型,不使用组件的测试例
上级
d9dd0b80
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
81 addition
and
2 deletion
+81
-2
components/test-type/test-type.uvue
components/test-type/test-type.uvue
+20
-0
components/test-type1/test-type1.uvue
components/test-type1/test-type1.uvue
+20
-0
main.uts
main.uts
+3
-2
pages.json
pages.json
+8
-0
pages/type/type.uvue
pages/type/type.uvue
+30
-0
未找到文件。
components/test-type/test-type.uvue
0 → 100644
浏览文件 @
a22113ef
<template>
<view>
test-type
</view>
</template>
<script>
export default {
name:"test-type",
data() {
return {
};
}
}
</script>
<style>
</style>
\ No newline at end of file
components/test-type1/test-type1.uvue
0 → 100644
浏览文件 @
a22113ef
<template>
<view>
test-type1
</view>
</template>
<script>
export default {
name:"test-type1",
data() {
return {
};
}
}
</script>
<style>
</style>
\ No newline at end of file
main.uts
浏览文件 @
a22113ef
...
...
@@ -14,10 +14,11 @@ import plugin2 from '@/plugins/plugin2.uts'
import plugin3 from '@/plugins/plugin3.uts'
import plugin4 from '@/plugins/plugin4.uts'
import CompForPlugin from '@/components/CompForPlugin.uvue'
// 仅引用类型,模板中不使用,也要保证不报错
let testType1 : TestType1ComponentPublicInstance | null = null
export function createApp() {
const app = createSSRApp(App)
console.log(testType1)
app.component('CompForAppComponent', CompForAppComponent)
app.provide('globalProvideMsg', 'global provide message')
...
...
pages.json
浏览文件 @
a22113ef
...
...
@@ -645,6 +645,14 @@
"navigationBarTitleText"
:
"webview 截图测试"
,
"navigationStyle"
:
"custom"
}
},
{
"path"
:
"pages/type/type"
,
"style"
:
{
"navigationBarTitleText"
:
""
,
"enablePullDownRefresh"
:
false
}
}
],
"tabBar"
:
{
...
...
pages/type/type.uvue
0 → 100644
浏览文件 @
a22113ef
<template>
<!-- #ifdef APP -->
<scroll-view style="flex:1">
<!-- #endif -->
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script>
// 仅引用类型,模板中不使用,也要保证不报错
let testType : TestTypeComponentPublicInstance | null = null
export default {
data() {
return {
}
},
onLoad() {
console.log(testType)
},
methods: {
}
}
</script>
<style>
</style>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录