|
@@ -24,7 +24,7 @@ import { useRoute } from 'vue-router';
|
|
|
import { computed, withDefaults, defineProps } from "vue";
|
|
|
const route = useRoute();
|
|
|
const isShow = computed(() => {
|
|
|
- return ['/show/summary', '/fuseEdit/path','/fuseEdit/animation'].includes(route.path);
|
|
|
+ return ['/show/summary', '/fuseEdit/positioning', '/fuseEdit/path','/fuseEdit/animation'].includes(route.path);
|
|
|
});
|
|
|
console.log(route, 777777)
|
|
|
withDefaults(defineProps<{ show?: boolean }>(), { show: false });
|