ホームページ > 記事 > ウェブフロントエンド > ピニアの使い方
この記事では、Vue アプリケーションの状態管理ライブラリである Pinia の使用に関する包括的なガイドを提供します。 Pinia ストアのインストールと作成、ストアの状態へのアクセスと変更、永続 p を使用してストアをローカル ストレージに永続化する方法について説明します
Pinia の使用法
Pinia を使用して状態を管理するにはどうすればよいですか? Vue アプリケーション?
Pinia は、Vue アプリケーションの状態管理ライブラリです。 Pinia を使用するには、npm または Yarn:
<code class="sh">npm install pinia</code>
or
<code class="sh">yarn add pinia</code>
経由でインストールする必要があります。次に、Pinia ストアを作成する必要があります。ストアは、状態とその状態を操作するメソッドを含む単なる JavaScript オブジェクトです。 defineStore
関数を使用してストアを作成できます:defineStore
function:
<code class="javascript">import { defineStore } from 'pinia' export const useCounterStore = defineStore('counter', { state: () => { return { count: 0 } }, actions: { increment() { this.count++ }, decrement() { this.count-- } } })</code>
Once you have created a store, you can access it from any Vue component using the useStore
function:
<code class="javascript">import { useStore } from 'pinia' export default { setup() { const counterStore = useStore('counter') return { count: counterStore.count, increment: counterStore.increment, decrement: counterStore.decrement } } }</code>
What are the different ways to access and modify the Pinia store?
You can access the Pinia store using the useStore
function. This function takes a string as an argument, which is the name of the store you want to access.
Once you have accessed the store, you can read its state using the state
property. You can also modify the store's state by calling the actions defined on the store.
How can I persist the Pinia store to local storage or another data source?
You can persist the Pinia store to local storage or another data source using the persist
<code class="sh">npm install pinia-plugin-persist</code>ストアを作成したら、
useStore
関数を使用して任意の Vue コンポーネントからストアにアクセスできます:
<code class="sh">yarn add pinia-plugin-persist</code>
Pinia ストアにアクセスして変更するさまざまな方法は何ですか?
🎜🎜useStore
関数を使用して Pinia ストアにアクセスできます。この関数は、アクセスするストアの名前である文字列を引数として受け取ります。🎜🎜ストアにアクセスしたら、state
プロパティを使用してその状態を読み取ることができます。ストアで定義されたアクションを呼び出して、ストアの状態を変更することもできます。🎜🎜🎜Pinia ストアをローカル ストレージまたは別のデータ ソースに永続化するにはどうすればよいですか?🎜🎜🎜Pinia ストアをローカル ストレージまたは別のデータ ソースに永続化できます。 persist
プラグインを使用します。永続化プラグインを使用するには、npm または Yarn 経由でインストールする必要があります:🎜<code class="javascript">import { createPinia, PiniaPlugin } from 'pinia' import { persist } from 'pinia-plugin-persist' const pinia = createPinia() pinia.use(persist)</code>🎜または🎜rrreee🎜 次に、永続化プラグインを Pinia に登録する必要があります:🎜rrreee
以上がピニアの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。