Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
a30ff6e7
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
361
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看板
提交
a30ff6e7
编写于
8个月前
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor: optimize code
上级
2c952a69
master
alpha
dev
feature/props-emit-type
master-old
v_4.45
v_4.45-alpha
v_4.44
v_4.43-alpha
v_4.42-alpha
v_4.41-alpha
v_4.36
v_4.36-alpha
v_4.35-alpha
v_4.34-alpha
v_4.33-alpha
v_4.32-alpha
v_4.31-alpha
v_4.29
v_4.28
v_4.28-alpha
v_4.27-alpha
v_4.26-alpha
v_4.25-alpha
无相关合并请求
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
4 addition
and
6 deletion
+4
-6
components/uni-collapse-item/uni-collapse-item.vue
components/uni-collapse-item/uni-collapse-item.vue
+1
-1
components/uni-collapse/uni-collapse.vue
components/uni-collapse/uni-collapse.vue
+1
-1
pages/directive/v-bind/Foo-composition.uvue
pages/directive/v-bind/Foo-composition.uvue
+1
-0
pages/directive/v-text/v-text.test.js
pages/directive/v-text/v-text.test.js
+1
-1
pages/reactivity/core/watch/watch-composition.uvue
pages/reactivity/core/watch/watch-composition.uvue
+0
-1
pages/reactivity/core/watch/watch-options.uvue
pages/reactivity/core/watch/watch-options.uvue
+0
-2
未找到文件。
components/uni-collapse-item/uni-collapse-item.vue
浏览文件 @
a30ff6e7
...
...
@@ -60,7 +60,7 @@
openCollapse
(
open
:
boolean
)
{
if
(
this
.
disabled
)
return
// 关闭其他已打开
$dispatch
(
this
,
'
UniCollapse
'
,
'
clo
c
eAll
'
)
$dispatch
(
this
,
'
UniCollapse
'
,
'
clo
s
eAll
'
)
this
.
is_open
=
open
this
.
openOrClose
(
open
)
},
...
...
This diff is collapsed.
Click to expand it.
components/uni-collapse/uni-collapse.vue
浏览文件 @
a30ff6e7
...
...
@@ -26,7 +26,7 @@
this
.
child_nodes
.
push
(
child
)
},
// 关闭所有
clo
c
eAll
()
{
clo
s
eAll
()
{
// 开启手风琴效果才回关闭其他
if
(
this
.
accordion
&&
this
.
child_nodes
.
length
>
0
)
{
this
.
child_nodes
.
forEach
((
item
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
pages/directive/v-bind/Foo-composition.uvue
浏览文件 @
a30ff6e7
...
...
@@ -27,6 +27,7 @@ defineProps({
},
obj: {
// #ifdef APP-ANDROID
// TODO: 确认类型是否合理
type: FooPropsObj1ReactiveObject,
// #endif
// #ifdef APP-IOS || WEB
...
...
This diff is collapsed.
Click to expand it.
pages/directive/v-text/v-text.test.js
浏览文件 @
a30ff6e7
...
...
@@ -4,7 +4,7 @@ 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
()
=>
{
it
(
'
not
web
'
,
async
()
=>
{
expect
(
1
).
toBe
(
1
)
})
return
...
...
This diff is collapsed.
Click to expand it.
pages/reactivity/core/watch/watch-composition.uvue
浏览文件 @
a30ff6e7
...
...
@@ -105,7 +105,6 @@ const stopWatchCount = watch(count, (count : number, prevCount : number, onClean
// 侦听器在响应式依赖改变时立即触发
flush: 'sync',
// 响应属性或引用作为依赖项被跟踪时调用
// TODO: vue 3.4 开始, 数据更新,也会触发 onTrack, 待升级 vue 版本时,需要确认该变化是否合理及跟进
onTrack(event : DebuggerEvent) {
if (event.type === 'get') {
watchCountTrackNum.value++
...
...
This diff is collapsed.
Click to expand it.
pages/reactivity/core/watch/watch-options.uvue
浏览文件 @
a30ff6e7
...
...
@@ -120,7 +120,6 @@
// 侦听器在响应式依赖改变时立即触发
flush: 'sync',
// 响应属性或引用作为依赖项被跟踪时调用
// TODO: vue 3.4 开始, 数据更新,也会触发 onTrack, 待升级 vue 版本时,需要确认该变化是否合理及跟进
onTrack(event : DebuggerEvent) {
if (event.type === 'get') {
self.watchCountTrackNum++
...
...
@@ -144,7 +143,6 @@
// 侦听器在响应式依赖改变时立即触发
flush: 'sync',
// 响应属性或引用作为依赖项被跟踪时调用
// TODO: vue 3.4 开始, 数据更新,也会触发 onTrack, 待升级 vue 版本时,需要确认该变化是否合理及跟进
onTrack(event : DebuggerEvent) {
if (event.type === 'get') {
self.watchCountTrackNum++
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
反馈
建议
客服
返回
顶部