Files
LingXi-CRM/web/src/store/index.js
T

7 lines
183 B
JavaScript
Raw Normal View History

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 }
})