forked from ruoyi/RuoYi-Vue3
使用Pinia代替Vuex进行数据存储
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
import Fuse from 'fuse.js'
|
||||
import { getNormalPath } from '@/utils/ruoyi'
|
||||
import { isHttp } from '@/utils/validate'
|
||||
import usePermissionStore from '@/store/modules/permission'
|
||||
|
||||
const search = ref('');
|
||||
const options = ref([]);
|
||||
@@ -28,9 +29,8 @@ const searchPool = ref([]);
|
||||
const show = ref(false);
|
||||
const fuse = ref(undefined);
|
||||
const headerSearchSelectRef = ref(null);
|
||||
const store = useStore();
|
||||
const router = useRouter();
|
||||
const routes = computed(() => store.getters.permission_routes);
|
||||
const routes = computed(() => usePermissionStore().routes);
|
||||
|
||||
function click() {
|
||||
show.value = !show.value
|
||||
|
||||
Reference in New Issue
Block a user