mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-24 12:36:37 +08:00
14 lines
220 B
Handlebars
Executable File
14 lines
220 B
Handlebars
Executable File
const use{{ properCase name }}Store = defineStore(
|
|
// 唯一ID
|
|
'{{ camelCase name }}',
|
|
() => {
|
|
const someThing = ref(0)
|
|
|
|
return {
|
|
someThing,
|
|
}
|
|
},
|
|
)
|
|
|
|
export default use{{ properCase name }}Store
|