| 12345678910111213141516 |
- import {defineStore} from "pinia";
- export const useDacangStore = defineStore('dacangStore', {
- state: () => ({
- currentClassify: '-1'
- }),
- actions: {
- setClassify(classify: string) {
- console.log('class' + classify)
- this.currentClassify = classify
- },
- loadList() {
- }
- }
- })
|