UNPKG

fe-core-cli

Version:

All-in-one scaffolding, cli integrated with Vue3 ecological chain, cli of H5 page, mock template cli of Node

18 lines (16 loc) 375 B
import { defineStore } from 'pinia'; export const useUserStore = defineStore({ id: 'user', // id必填,且需要唯一 state: () => { return { name: '跳转中.....', }; }, actions: { updateName(name: string) { setTimeout(() => { this.name = name; }, 3000); }, }, });