8store async

发布时间 2023-09-28 17:20:58作者: 绿芽在岩上

认真学习前端打卡第8天9.27

1.定义store
import {defineStore} from 'pinia'
export const useNameStore = defineStore('alerts',{})//option store可以包含state,actions,getters;setup store可以包含ref,computed,function;alert应用中store的唯一id
2.npm(node包管理器)
3.proxy代理
4.async(可以看成同步代码),await (执行完语句内代码,堵塞之后的代码,放进微任务)