2022-12-24 19:45:54 +08:00
|
|
|
import { defineStore } from 'pinia'
|
2022-11-28 16:38:45 +08:00
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
2022-12-24 19:45:54 +08:00
|
|
|
export const useStore = defineStore('main', () => {
|
|
|
|
|
const selectedKeys = ref('dashboard')
|
|
|
|
|
return { selectedKeys }
|
|
|
|
|
})
|