app.ts 247 B

123456789101112131415161718
  1. import { defineStore } from 'pinia'
  2. interface App {
  3. route: string
  4. }
  5. const useAppStore = defineStore('app', {
  6. state: (): App => {
  7. return {
  8. route: ''
  9. }
  10. },
  11. actions: {
  12. }
  13. })
  14. export default useAppStore