Pinia使用案例

 前言

4a285c53cd80c60d4d8177d8dd61f7d2.png

 大家好 我是歌谣 今天给大家带来Pinia的讲解

  安装vite程序

69ab4b008ecc406d74f4ed33c2b54a7c.png

 yarn create vite

0058c4182120ed4eaeb325c325dee847.png

  main.ts

2464d33c994df99605f1a062407d313a.png

import { createApp } from 'vue'
import './style.css'
import {createPinia} from "pinia"
import App from './App.vue'
const pinia=createPinia()
createApp(App).use(pinia).mount('#app')

 HelloWorld.vue

efe52f21a21962aae0db0f50f2144168.png

<script setup lang="ts">
import { ref } from 'vue'
import { useCounterStore,useMsgStore } from '../store/index';
defineProps<{ msg: string }>()
const counter=useCounterStore()
const useMsg=useMsgStore()
const count = ref(0)
</script>




<template>
  <h1>{{ msg }}</h1>




  <div class="card">
    <h2>{{ useMsg.msg }}</h2>
    <button type="button" @click="counter.increment">count is {{ counter.count }}</button>
    
  </div>




</template>




<style scoped>
</style>

 index.ts

db69e6fcc392077179ac4dfc110a8bbc.png

import { defineStore } from "pinia";
import {ref} from 'vue'
export const useCounterStore=defineStore('counter',{
    state:()=>{
        return {count:0}
    },
    getters:{
        double:(state)=>state.count*2
    },
    actions:{
        increment(){
            return this.count++
        }
    }
})




export const useMsgStore=defineStore('msg',()=>{
    const msg=ref('geyao')
    function changeMsg(){
        msg.value+='world'
    }
    return {msg,changeMsg}
})

 运行结果

e5e0ec3362087a5d5794e54661a025f9.png

591b2a847c2643c276eba6c930a4194e.png

总结

86d8e5ec3832e064676fe8da12a6b348.png

我是歌谣 想加入最强前端学习交流群找我联系方式

点击上方蓝字关注我们

30c85f2aa90a667662ac329fdf4a2715.png

点个在看你最好看

a4d5b72032aafa4e5e2c15571bce6f85.png

下方查看历史文章

35986d4c143a3ac67a4a916441ff92b0.png

Vuex讲解

DOM-Diff讲解

javascript树形结构化

原生+TS实现todolist效果

Vue3+typesctipt实现todolist效果

posted @ 2023-10-20 17:43  前端导师歌谣  阅读(32)  评论(0)    收藏  举报  来源