diff --git a/plop/store-template/index.d.hbs b/plop/store-template/index.d.hbs index 87713c5d..f916f3d1 100644 --- a/plop/store-template/index.d.hbs +++ b/plop/store-template/index.d.hbs @@ -1,3 +1,3 @@ -export interface {{name}}StoreType { +export interface {{upperDataName}}StoreType { } \ No newline at end of file diff --git a/plop/store-template/index.hbs b/plop/store-template/index.hbs index f5e24867..bd184a49 100644 --- a/plop/store-template/index.hbs +++ b/plop/store-template/index.hbs @@ -1,5 +1,5 @@ import { defineStore } from 'pinia' -import { {{name}}StoreType } from './{{name}}Store.d' +import { {{upperDataName}}StoreType } from './{{name}}Store.d' import { setLocalStorage, getLocalStorage } from '@/utils' import { StorageEnum } from '@/enums/storageEnum'