Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

vuex-vue2vuex vue2 工具

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

2,151

周安装

87

GitHub Stars

347

下载量

675
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vuex-vue2(vuex vue2 工具)
来源仓库:https://github.com/teachingai/full-stack-skills
仓库路径:skills/vuex-vue2
安装命令:
npx skills add https://github.com/teachingai/full-stack-skills --skill vuex-vue2
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/teachingai/full-stack-skills --skill vuex-vue2

简介

用于辅助 Vue 2 项目中 Vuex 状态管理的开发与维护。

  • 适合梳理 store 结构、编写 mutation 或 action 逻辑。
  • 通过 GitHub 安装,适用于传统 Vue 2 技术栈场景。
  • 需注意 Vue 2 已停止维护,新项目不建议继续使用。
  • vuex-vue2 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

When to use this skill

Use this skill whenever the user wants to:

  • Install and set up Vuex in a Vue 2 project
  • Manage application state with Vuex
  • Use Vuex store in Vue components
  • Understand Vuex core concepts (state, getters, mutations, actions)
  • Use Vuex modules for large applications
  • Handle Vuex plugins and devtools
  • Understand Vuex API and methods
  • Troubleshoot Vuex issues

How to use this skill

This skill is organized to match the Vuex official documentation structure (https://vuex.vuejs.org/zh/, https://vuex.vuejs.org/zh/guide/, https://vuex.vuejs.org/zh/api/). When working with Vuex:

  1. Identify the topic from the user's request:

- Installation/安装 → examples/guide/installation.md - Quick Start/快速开始 → examples/guide/quick-start.md - Core Concepts/核心概念 → examples/core-concepts/ - Advanced/高级 → examples/advanced/ - API/API 文档 → api/

  1. Load the appropriate example file from the examples/ directory: Guide (使用指南): Core Concepts (核心概念): Advanced (高级):

- examples/guide/intro.md - Introduction to Vuex - examples/guide/installation.md - Installation guide - examples/guide/quick-start.md - Quick start guide - examples/guide/what-is-vuex.md - What is Vuex - examples/core-concepts/state.md - State - examples/core-concepts/getters.md - Getters - examples/core-concepts/mutations.md - Mutations - examples/core-concepts/actions.md - Actions - examples/core-concepts/modules.md - Modules - examples/advanced/plugins.md - Plugins - examples/advanced/strict-mode.md - Strict mode - examples/advanced/form-handling.md - Form handling - examples/advanced/testing.md - Testing - examples/advanced/hot-reload.md - Hot reload

  1. Follow the specific instructions in that example file for syntax, structure, and best practices Important Notes:

- Vuex is for Vue 2.x - Store is the central state management - State is reactive - Mutations are synchronous - Actions are asynchronous - Each example file includes key concepts, code examples, and key points

  1. Reference API documentation in the api/ directory when needed:

- api/store-api.md - Store API - api/state-api.md - State API - api/getters-api.md - Getters API - api/mutations-api.md - Mutations API - api/actions-api.md - Actions API - api/modules-api.md - Modules API - api/plugins-api.md - Plugins API

  1. Use templates from the templates/ directory:

- templates/installation.md - Installation templates - templates/store-setup.md - Store setup templates - templates/component-usage.md - Component usage templates

1. Understanding Vuex

Vuex is a state management pattern and library for Vue.js applications. It serves as a centralized store for all the components in an application.

Key Concepts:

  • Store: Centralized state container
  • State: Application state (data)
  • Getters: Computed properties for store
  • Mutations: Synchronous state changes
  • Actions: Asynchronous operations
  • Modules: Store organization

2. Installation

Using npm:

npm install vuex@3

Using yarn:

yarn add vuex@3

Using CDN:

<script src="https://unpkg.com/vuex@3"></script>

3. Basic Setup

// store/index.js
import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment(state) {
      state.count++
    }
  }
})

export default store
// main.js
import Vue from 'vue'
import store from './store'

new Vue({
  store,
  render: h => h(App)
}).$mount('#app')

Doc mapping (one-to-one with official documentation)

Examples and Templates

This skill includes detailed examples organized to match the official documentation structure. All examples are in the examples/ directory (see mapping above).

To use examples:

  • Identify the topic from the user's request
  • Load the appropriate example file from the mapping above
  • Follow the instructions, syntax, and best practices in that file
  • Adapt the code examples to your specific use case

To use templates:

  • Reference templates in templates/ directory for common scaffolding
  • Adapt templates to your specific needs and coding style

API Reference

Detailed API documentation is available in the api/ directory, organized to match the official Vuex API documentation structure (https://vuex.vuejs.org/zh/api/):

Store API (api/store-api.md)

  • Store constructor options
  • Store instance properties
  • Store instance methods

State API (api/state-api.md)

  • State definition
  • State access
  • State reactivity

Getters API (api/getters-api.md)

  • Getter definition
  • Getter access
  • Getter arguments

Mutations API (api/mutations-api.md)

  • Mutation definition
  • Mutation commit
  • Mutation payload

Actions API (api/actions-api.md)

  • Action definition
  • Action dispatch
  • Action context

Modules API (api/modules-api.md)

  • Module definition
  • Module namespacing
  • Module registration

Plugins API (api/plugins-api.md)

  • Plugin definition
  • Plugin usage
  • Built-in plugins

To use API reference:

  1. Identify the API you need help with
  2. Load the corresponding API file from the api/ directory
  3. Find the API signature, parameters, return type, and examples
  4. Reference the linked example files for detailed usage patterns
  5. All API files include links to relevant example files in the examples/ directory

Best Practices

  1. Use mutations for synchronous changes: Mutations must be synchronous
  2. Use actions for async operations: Actions can contain async operations
  3. Keep state normalized: Avoid nested state structures
  4. Use modules for large apps: Organize store with modules
  5. Use getters for computed state: Derive state with getters
  6. Follow naming conventions: Use consistent naming patterns
  7. Use TypeScript: Leverage TypeScript for type safety

Resources

Keywords

Vuex, vuex, Vue 2, state management, 状态管理, store, state, getters, mutations, actions, modules, 存储, 状态, 获取器, 变更, 动作, 模块, Vuex store, Vuex state, Vuex getters, Vuex mutations, Vuex actions, Vuex modules, Vuex plugins, centralized state, reactive state, synchronous mutations, asynchronous actions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.33%
按下载量换算191

Gemini CLI

26.84%
按下载量换算181

OpenCode

17.57%
按下载量换算119

Antigravity

12.07%
按下载量换算81

Codex

8.66%
按下载量换算58

windsurf

3.82%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills