ปิด api ที่ยังไม่ได่ใช้

This commit is contained in:
Kittapath 2023-03-19 00:59:27 +07:00
parent 6ab1a862d6
commit a61dfb8789
6 changed files with 109 additions and 96 deletions

View file

@ -0,0 +1,10 @@
import { ref, computed } from 'vue'
import { defineStore } from 'pinia'
export const useMetaStore = defineStore('meta', () => {
const meta = ref<string>('')
return {
meta
}
})