mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-09-17 08:46:38 +08:00
12 lines
205 B
Handlebars
12 lines
205 B
Handlebars
const use{{ properCase name }}Store = defineStore(
|
|
// 唯一ID
|
|
'{{ camelCase name }}',
|
|
{
|
|
state: () => ({}),
|
|
getters: {},
|
|
actions: {},
|
|
},
|
|
)
|
|
|
|
export default use{{ properCase name }}Store
|