Skip to content

Commit df05aba

Browse files
committed
perf(package-install-scripts): use shallowRef instead deep ref
1 parent 629f366 commit df05aba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/PackageInstallScripts.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const sortedNpxDeps = computed(() => {
1414
return Object.entries(props.installScripts.npxDependencies).sort(([a], [b]) => a.localeCompare(b))
1515
})
1616
17-
const isExpanded = ref(false)
17+
const isExpanded = shallowRef(false)
1818
</script>
1919

2020
<template>

0 commit comments

Comments
 (0)