index.hbs 181 B

1234567891011
  1. export const use{{ properCase name }}Store = defineStore(
  2. // 唯一ID
  3. '{{ camelCase name }}',
  4. () => {
  5. const someThing = ref(0)
  6. return {
  7. someThing,
  8. }
  9. },
  10. )