• vue3引入pinna配置使用


    引入pinna

    npm install pinia -S
    
    • 1

    在src文件里面创建store文件-index.ts 在main.ts中引用pinna

    import {createPinia} from 'pinia'
    const store = createPinia()
    createApp(App).use(router).use(store).mount('#app')
    
    • 1
    • 2
    • 3

    index.ts

    index.ts文件

    defineStore定义容器
    参数1:是对仓库的命名,名称必须具备唯一性;
    参数2:配置的选项对象,即state、getters、actions,
    其中state的写法必须是函数,为了避免在服务端交叉请求导致的状态数据污染,
    而且必须是箭头函数,为了更好的TS类型推导。
    
    • 1
    • 2
    • 3
    • 4
    • 5
    import { defineStore } from 'pinia'// 引入
    
    export const useStore = defineStore("main", {
       state: () => {
          return {
             count: 10,
             name: 'wl',
             arr: [1, 2, 3],
          }
       },
       //类似于computed 可以帮我们去修饰我们的值
       getters: {
          //  函数接受一个可选参数 state
          count10(state) { return state.count + 10 }
       },
       //可以操作异步 和 同步提交state
       actions: {
          //不要使用箭头函数定义action,因为箭头函数绑定外部this
          changeState(num: any, str: any) {   //不要使用箭头函数定义action,因为箭头函数绑定外部this
             this.count += num
             this.name += str
             this.arr.push(5)
          }
          // this.$patch({})或this.$patch(state=>{})    //还可通过$patch修改state的数据
       }
    })
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    其它页使用

    其他页面使用

    <template>
      <div>
        <span>数量:{{ test.count }}---{{ count }}</span>
        <br>
        <span>姓名:{{ test.name }}---{{ name }}</span>
        <br>
        <span>arr:{{ test.arr }}---{{ arr }}</span>
      </div>
    </template>
    <script setup lang="ts">
    import { useStore } from "./store/index"//引入store文件
    import { storeToRefs } from 'pinia'//引入storeToRefs
    import { toRefs } from "vue";
    const test = useStore()//声明赋值引入的store文件
    const { count, name, arr, count10 } = storeToRefs(test)//数据解构出来
    //使用storeToRefs函数将state里的数据解构出来实现响应式
    
    // 3种方法 一种通过test.自定义名称进行调用
    // 另一种是修改多个数据,用$patch 
    // 另一种是直接通过state
    // test.$patch({
    //   count: test.count,
    //   name: test.name,
    //   arr: [...test.arr, 4]
    // })
    
    //  test.$patch(state => {
    //  state.count++
    //  state.name += '~~'
    //  state.arr.push(5)
    //})
    
    test.changeState(10,'hello') //逻辑比较多用action
    </script>
    
    <style scoped></style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36

    参考

  • 相关阅读:
    【kubernetes】【基础资源使用】kubernetes中的Deployment使用
    RunnerGo UI自动化使用体验
    算法|Day50 单调栈1
    hbase学习01(hbase入门及hbase shell简单操作)
    送给即将工作的自己
    智能交通收费RFID读写器在不停车收费(ETC)系统中的应用
    认识HTTP协议---2
    C#上位机序列10: Winform上位机通用框架
    利用 Python PyPDF2库轻松提取PDF文本(及其他高级操作)
    智慧养殖物联网远程管控系统平台
  • 原文地址:https://blog.csdn.net/m0_53912016/article/details/133775973