update

parent 3d92e2d9
......@@ -79,7 +79,6 @@
import { useRoute } from 'vue-router';
import { Pages } from '../router/routes';
import MenuListComponent from 'components/menu-list/index.vue';
import { defineComponent, ref, computed, onMounted } from 'vue';
import { useStore } from '../store';
......@@ -102,6 +101,7 @@ export default defineComponent({
const $store = useStore();
onMounted(async () => {
await $store.dispatch('authentication/getListPages');
});
......@@ -109,6 +109,7 @@ export default defineComponent({
leftDrawerOpen,
showHeader,
toggleLeftDrawer() {
leftDrawerOpen.value = !leftDrawerOpen.value;
},
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment