|
@ -164,6 +164,14 @@ onMounted(() => { |
|
|
activeTab.value = route.query?.t |
|
|
activeTab.value = route.query?.t |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
watch( |
|
|
|
|
|
() => route.query?.t, |
|
|
|
|
|
() => { |
|
|
|
|
|
activeTab.value = route.query?.t |
|
|
|
|
|
}, |
|
|
|
|
|
{ immediate: true, deep: true }, |
|
|
|
|
|
) |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
|