在 Pinia 商店中,如何显式键入属性?
import { defineStore } from 'pinia'
export const useNotifyStore = defineStore('NotifyStore', {
state: () => ({
message: '',
type: '', // only 'warning', 'error', 'success' shall be allowed values -> how can I specify that?
}),
})