File size: 161 Bytes
aeee1e2
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { defineStore } from 'pinia'

export const idStore = defineStore('idStore', {
  state: () => {
    return {
      knowledgeid: 'samples',

    }
  },

})