12 lines
181 B
Handlebars
12 lines
181 B
Handlebars
|
|
export const use{{ properCase name }}Store = defineStore(
|
||
|
|
// 唯一ID
|
||
|
|
'{{ camelCase name }}',
|
||
|
|
() => {
|
||
|
|
const someThing = ref(0)
|
||
|
|
|
||
|
|
return {
|
||
|
|
someThing,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
)
|