2023-09-01から1ヶ月間の記事一覧
import { ref, reactive, readonly } from "vue"; export function useStore() { const items = reactive({ list: [] }); let backupList = []; const auth0 = reactive({ auth: null }); function setUser(auth) { auth0.auth = auth; } function getUser()…