refactor(modules/web): arrange storeToRefs destruct

This commit is contained in:
Xwite
2024-10-02 18:19:25 +08:00
parent 320bd3d075
commit 01b031806b
10 changed files with 56 additions and 44 deletions

View File

@@ -60,7 +60,7 @@
<script setup>
const store = useSourceStore();
defineProps(["config"]);
const { currentSource } = storeToRefs(store);
const currentSource = store.currentSource;
</script>
<style lang="scss" scoped>