第Ⅶ章-Ⅱ Pinia详解

第Ⅶ章-Ⅱ Pinia详解

  • 简介
  • 安装 Pinia
  • 配置Pinia
  • 定义Store
  • 组件中使用
  • 处理异步操作
  • 模块化Store
  • 使用持久化插件

简介

Pinia 是 Vue 3 官方推荐的状态管理库,也是 Vuex 的替代方案之一。它更轻量、更现代化,并提供更好的 TypeScript 支持。

安装 Pinia

首先,确保你已经安装了Vue3 并且初始化了项目。
npm

npm install pinia

yarn

yarn add pinia

配置Pinia

在 main.ts 中创建并配置 Pinia

// src/main.ts
import { createApp } from 'vue';
import App from './App.vue';
import { createPinia } from 'pinia';const pinia = createPinia();
const app = createApp(App);
app.use(pinia);
app.mount('#app');

定义Store

在 src/stores 目录中创建 store 文件,比如 counter.ts。

// src/stores/counter.ts
import { defineStore } from 'pinia';// 使用 TypeScript 接口定义状态类型
interface CounterState {count: number;
}// 定义 store
export const useCounterStore = defineStore({id: 'counter',state: (): CounterState => ({count: 0}),getters: {doubleCount: (state) => state.count * 2},actions: {increment() {this.count++;},decrement() {this.count--;},incrementBy(amount: number) {this.count += amount;}}
});

组件中使用

<!-- src/components/CounterComponent.vue -->
<template><div><h2>Counter</h2><p>Count: {{ store.count }}</p><p>Double Count: {{ store.doubleCount }}</p><button @click="store.increment">Increment</button><button @click="store.decrement">Decrement</button><button @click="incrementBy(5)">Increment by 5</button></div>
</template><script setup lang="ts">
import { useCounterStore } from '@/stores/counter';const store = useCounterStore();const incrementBy = (amount: number) => {store.incrementBy(amount);
};
</script>

处理异步操作

// src/stores/counter.ts
import { defineStore } from 'pinia';interface CounterState {count: number;
}export const useCounterStore = defineStore({id: 'counter',state: (): CounterState => ({count: 0}),getters: {doubleCount: (state) => state.count * 2},actions: {increment() {this.count++;},decrement() {this.count--;},incrementBy(amount: number) {this.count += amount;},async incrementAsync(amount: number) {// 模拟异步操作return new Promise<void>((resolve) => {setTimeout(() => {this.incrementBy(amount);resolve();}, 1000);});}}
});

组件中使用异步操作

<!-- src/components/CounterComponent.vue -->
<template><div><h2>Counter</h2><p>Count: {{ store.count }}</p><p>Double Count: {{ store.doubleCount }}</p><button @click="store.increment">Increment</button><button @click="store.decrement">Decrement</button><button @click="incrementBy(5)">Increment by 5</button><button @click="incrementAsync(3)">Increment by 3 (Async)</button></div>
</template><script setup lang="ts">
import { useCounterStore } from '@/stores/counter';const store = useCounterStore();const incrementBy = (amount: number) => {store.incrementBy(amount);
};const incrementAsync = async (amount: number) => {await store.incrementAsync(amount);
};
</script>

模块化Store

Pinia 通过 defineStore 函数实现模块化 Store,每个 Store 都是一个独立的模块。
定义用户Store

// src/stores/user.ts
import { defineStore } from 'pinia';interface UserState {name: string;age: number;
}export const useUserStore = defineStore({id: 'user',state: (): UserState => ({name: 'Alice',age: 25}),getters: {isAdult: (state) => state.age >= 18},actions: {updateName(newName: string) {this.name = newName;},incrementAge() {this.age++;}}
});

使用持久化插件

如果希望 Pinia 的状态在刷新后保持不变,可以使用 pinia-plugin-persistedstate 插件。

npm install pinia-plugin-persistedstate

配置持久化插件

// src/main.ts
import { createApp } from 'vue';
import App from './App.vue';
import { createPinia } from 'pinia';
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate';const pinia = createPinia();
pinia.use(piniaPluginPersistedstate);const app = createApp(App);
app.use(pinia);
app.mount('#app');

使用持久化插件,在需要持久化的 Store 中添加 persist 选项

// src/stores/user.ts
import { defineStore } from 'pinia';interface UserState {name: string;age: number;
}export const useUserStore = defineStore({id: 'user',state: (): UserState => ({name: 'Alice',age: 25}),getters: {isAdult: (state) => state.age >= 18},actions: {updateName(newName: string) {this.name = newName;},incrementAge() {this.age++;}},persist: {enabled: true}
});

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/8485.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何使用多协议视频汇聚/视频安防系统EasyCVR搭建智慧园区视频管理平台?

智慧园区作为现代化城市发展的重要组成部分&#xff0c;不仅承载着产业升级的使命&#xff0c;更是智慧城市建设的重要体现。随着产业园区竞争的逐渐白热化&#xff0c;将项目打造成完善的智慧园区是越来越多用户关注的内容。 然而我们往往在规划前期就开始面临众多难题&#…

2405C++,C++取计算机序列号及CCoInitialize

#include <windows.h> #include <wrl/client.h> #include <wrl/wrappers/corewrappers.h> #include <windows.system.profile.systemmanufacturers.h> #include <roapi.h> #include <stdio.h> // 恐怖!混合C和C! namespace WRL Microsoft…

保护公司机密:避免员工带着数据说拜拜

公司的核心资产之一就是数据。无论是客户信息、研发代码、内部决议、财务报告、商业合同、设计图纸等都是公司的重要资产。如果这些数据在员工离职时被带走&#xff0c;或在员工在职期间不当行为导致数据泄露&#xff0c;将给公司带来重大损失。 然而&#xff0c;保护这些数据…

软考143-下午题-【试题二】:E-R图、关系模式

一、分值与目标 15分&#xff0c;目标10 二、题目形式 示例&#xff1a; 三、E-R图的基本图形元素 示例&#xff1a; 3-1、实体 1、弱实体 在现实世界中有一种特殊的联系&#xff0c;这种联系代表实体间的所有 (Ownership) 关系&#xff0c;例如&#xff1a;职工与家属的联系…

mybatis调用数据库存储过程

mybatis调用数据库存储过程及常见属性详解 调用mapper String visitCode mapper.getVisitCode(objectMap);Dao层&#xff0c;xml文件代码编写 <select id"getVisitCode" parameterType"map" resultType"string" statementType"CALLAB…

STC8增强型单片机开发 【第一个程序 - 点亮第一盏灯】

目录 一、创建项目 1. 创建一个新的项目 ​编辑 2. 配置开发板信息 ​编辑 3. 取消汇编配置 4. 项目结构 二、编码实现 1. 项目准备 2. 代码实现 点灯&#xff1a; 熄灯&#xff1a; 3. 编译烧录运行 配置编译输出 保存和编译代码 ​编辑 烧录 一、创建项目 1. …

前端每日一题day1

用JS写出两个数组合并成一个数组排序返回&#xff08;输入&#xff1a; [5,2,10] [9,1] 输出&#xff1a; [1,2,5,9,10]&#xff09; function mergeAndSort(arr1, arr2) {// 合并两个数组var mergedArray arr1.concat(arr2);// 对合并后的数组进行排序mergedArray.sort(func…

【Arduino IDE 2】Windows平台安装ESP8266 NodeMCU LittleFS Uploader(文件上传插件)

在Arduino IDE 2&#xff08;2.2.1或更高版本&#xff09;上&#xff0c;如何安装基于ESP8266 NodeMCU的LittleFS文件系统上传插件&#xff0c;以及如何将文件上传到ESP8266 NodeMCU板文件系统。 一、LittleFS简介 LittleFS是一个为微控制器创建的轻量级文件系统&#xff0c;可…

实验五 Spark Structured Streaming编程实践

一、编写程序 (1). 按照tag分组统计生成的日志数。 在新开的终端内输入 vi spark_exercise_testsyslog1.py &#xff0c;贴入如下代码并运行。运行之前需要关闭“tail终端”内的tail命令并重新运行tail命令&#xff0c;否则多次运行测试可能导致没有新数据生成。 #!/usr/bin…

onlyoffice容器打包成镜像

书接上篇&#xff0c;onlyoffice容器已经更改在本地docker环境中了&#xff0c;之后需要部署到测试环境的docker中&#xff0c;采用容器打包成本地镜像 1、本地docker 查看容器&#xff1a;docker ps 生成镜像&#xff1a;docker commit -p blissful_lichterman 重命名镜像&a…

【大学物理】双语合集听课笔记

7.5 angular momentu(角动量)_哔哩哔哩_bilibili 6.4Energy in Rotation Motion 有质量有速度的物体有动能&#xff0c;是不是很有道理 international system&#xff08;from French systeme international&#xff0c;acronym&#xff0c;SI&#xff09;of ineria kg*m^2 转…

pycharm中导入rospy(ModuleNotFoundError: No module named ‘rospy‘)

1. ubuntu安装对应版本ros ubuntu20.04可参考&#xff1a; https://wiki.ros.org/cn/noetic/Installation/Ubuntuhttps://zhuanlan.zhihu.com/p/515361781 2. 安装python3-roslib sudo apt-get install python3-roslib3.在conda环境中安装rospy pip install rospkg pip in…

【Git】Git学习-17:git rebase,且解决合并冲突

学习视频链接&#xff1a;【GeekHour】一小时Git教程_哔哩哔哩_bilibili​编辑https://www.bilibili.com/video/BV1HM411377j/?vd_source95dda35ac10d1ae6785cc7006f365780 理论 git rebase 目标分支&#xff1a;把当前分支的提交&#xff0c;从与目标分支的共同主祖先处断开…

js如何控制一次只加载一张图片,加载完成后再加载下一张

公众号&#xff1a;程序员白特&#xff0c;欢迎一起交流学习~ 原文&#xff1a;https://juejin.cn/post/7340167256267391012 今天看到一个面试题&#xff0c;是关于img图片加载方面的&#xff0c;有必要记录一下。其实关于这个问题&#xff0c;只要知道图片什么时候加载完成就…

数据库选择小结

第一次测试 1. (单选题, 2分)【单选题】在E-R模型中&#xff0c;实体间的联系用&#xff08; C&#xff09;图标来表示。 A. 矩形B. 直线C. 菱形D. 椭圆 2. (单选题, 2分)【单选题】设R是一个关系模式&#xff0c;如果R中的每个属性都是不可分解的&#xff0c;则称R属于&…

分割模型Maskformer系列

maskformer&#xff1a;Per-Pixel Classification is Not All You Need for Semantic Segmentation 论文地址&#xff1a;https://arxiv.org/pdf/2107.06278 1.概述 传统的语义分割方法通常采用逐像素分类&#xff08;per-pixel classification&#xff09;&#xff0c;而实…

linux安装Redis 7.2.4笔记

一.保姆级安装 1.下载Redis 7.2.4安装包 sudo wget https://download.redis.io/releases/redis-7.2.4.tar.gz2.解压&#xff0c;可以指定 sudo tar -zvxf redis-7.2.4.tar.gz 3.检测并安装 GCC 编译器&#xff1a; yum 是基于 Red Hat 的 Linux 发行版&#xff08;如 CentOS、…

CSRF漏洞简介

csrf简介 CSRF 全称为跨站请求伪造&#xff08; Cross-site request forgery &#xff09;&#xff0c;是一种网络攻击方式&#xff0c;在 CSRF 的攻击场景中攻击者会伪造一个请求&#xff08;这个请求一般是一个链接&#xff09;&#xff0c;然后欺骗目标用户进行点击&#xf…

Lora基础炼丹学习笔记

1、收集数据集 20-30张人物各个角度、各个姿势的图片 2、图片预处理 裁剪 打标签 裁剪必须也要512 * 512 &#xff0c;因为sd1.5就是用这个尺寸训练的&#xff0c;可以使用后期处理 打标可以勾选这个&#xff0c;Deepbooru对二次元画风更友好 打标也可以使用wb14-tagger的…

Flink checkpoint 源码分析- Checkpoint snapshot 处理流程

背景 在上一篇博客中我们分析了代码中barrier的是如何流动改的。Flink checkpoint 源码分析- Checkpoint barrier 传递源码分析-CSDN博客 最后跟踪到了代码org.apache.flink.streaming.runtime.io.checkpointing.CheckpointedInputGate#handleEvent 现在我们接着跟踪相应代…