npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

pinia-plugin-setup-reset

v0.1.0

Published

Pinia plugin that adds $reset method with selective reset support for Setup stores

Readme

pinia-plugin-setup-reset

NPM version License

为 Pinia Setup Store 提供 $reset() 方法,支持全量重置和选择性重置。

为什么需要这个插件?

Pinia 的 Options Store 自带 $reset() 方法,但 Setup Store(Composition API 风格)默认不支持。调用时会抛出错误:

🍍: Store "xxx" is built using the setup syntax and does not implement $reset().

本插件为 Setup Store 自动注入 $reset() 方法,并额外支持选择性重置指定的 state 属性。

安装

pnpm add pinia-plugin-setup-reset

使用

import { createPinia } from 'pinia'
import { resetPlugin } from 'pinia-plugin-setup-reset'

const pinia = createPinia()
pinia.use(resetPlugin)

app.use(pinia)

全量重置

import { defineStore } from 'pinia'
import { ref } from 'vue'

const useUserStore = defineStore('user', () => {
  const name = ref('Alice')
  const age = ref(25)
  const tags = ref(['admin'])

  return { name, age, tags }
})

const userStore = useUserStore()

userStore.name = 'Bob'
userStore.age = 30
userStore.tags = ['user']

// 重置全部状态到初始值
userStore.$reset()
// name → 'Alice', age → 25, tags → ['admin']

选择性重置

userStore.name = 'Bob'
userStore.age = 30

// 只重置 name,保留 age 的修改
userStore.$reset('name')
// name → 'Alice', age → 30

// 同时重置多个属性
userStore.$reset('name', 'age')
// name → 'Alice', age → 25

TypeScript 支持

插件自动扩展了 Pinia 的类型定义,$reset() 的参数会根据 store 的 state 类型自动推导,提供属性名补全:

const userStore = useUserStore()

userStore.$reset() // 全量重置
userStore.$reset('name') // 只重置 name
userStore.$reset('name', 'age') // 重置 name 和 age
userStore.$reset('xxx') // TS 报错:类型不存在

兼容性

| 依赖 | 版本要求 | | ----- | -------- | | pinia | >= 2.0.0 | | vue | >= 3.0.0 |

License

MIT