VUEX in Japanese translation

vuex

Examples of using Vuex in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
We then make a mock store by calling new Vuex.
次に、新しいVuex.storeをモックした値で呼び出すことによってモックのストアを作成します。
Vuex is a state management pattern+ library for Vue. js applications.
VuexはVue.jsアプリケーションのための状態管理パターン+ライブラリです。
We don't need to install vuex since it's shipped with Nuxt. js.
VuexはNuxt.jsによって取り込まれているため、別途インストールする必要はありません。
Furthermore, add the below line into anywhere in your code before using Vuex.
さらに、Vuexを使用する前に、コードのどこかに次の行を追加します。
When using Vuex in strict mode, it could be a bit tricky to use v-model on a piece of state that belongs to Vuex:.
厳格モードでVuexを使用するとき、Vuexに属する状態の一部でv-modelを使用するのは少しトリッキーです。
The downside is that you will need to mock Vuex functions, like commit and dispatch.
欠点はcommitやdispatchのようなVuexの関数のモックが必要なことです。
Vuex doesn't really restrict how you structure your code.
Vuexは実際のところ、あなたがコードを構造化する方法を制限しません。
A deep understanding of all these concepts is essential for using vuex.
これらのコンセプトを深く理解することは、Vuexを使用するにあたって不可欠です。
The benefit of creating a running store instance is we don't have to mock any Vuex functions.
実行可能なストアを生成してテストすることの利点はVuexの関数をモックする必要がない事です。
In this guide, we will see how to test Vuex in components with Vue Test Utils, and how to approach testing a Vuex store.
このガイドでは、vue-test-utilsでコンポーネントでVuexをテストする方法について、見ていきます。
You will have to clone directly from GitHub and build vuex yourself if you want to use the latest dev build.
最新の開発版ビルドを利用したい場合には、Githubから直接クローンしvuexを自身でビルドする必要があります。
We will be using the official state management library Vuex for this purpose. Let's create a store.
このような用途として、公式の状態管理ライブラリであるVuexを使っています。ではstore。
First we tell Vue to use Vuex with the localVue. use method.
まず、VueにlocalVue.useメソッドを使用してVuexを使用するように指示しています。
Getters, mutations, and actions are all JavaScript functions, so we can test them without using Vue Test Utils and Vuex.
ゲッタとミューテーションとアクションはすべてJavaScriptの関数です。それらはvue-test-utilsとVuexを使用しなくてもテストすることができます。
Vuex provides a mechanism to"inject" the store into all child components from the root component with the store option(enabled by Vue. use(Vuex)).
Vuexは、ルートコンポーネントにstoreオプションを指定することで(これは、Vue.use(Vuex)で有効にできます)、すべての子コンポーネントにストアを"注入"する機構を提供しています。
We import Vue and Vuex(included in Nuxt. js) and we tell Vue to use Vuex to let us use$store in our components.
VueとVuex(Nuxt.jsに含まれる)をインポートし、コンポーネントで$storeを使うためにVuexを使うことをVueに伝えます。
Vuex uses a single state tree- that is, this single object contains all your application level state and serves as the"single source of truth".
Vuexは単一ステートツリー(singlestatetree)を使います。つまり、この単一なオブジェクトはアプリケーションレベルの状態が全て含まれており、"信頼できる唯一の情報源(singlesourceoftruth)"として機能します。
Available only if the vuex store is set.
Vuexstoreが設定されている場合にのみ利用可能です。
Vuex(included only when using the store option).
Vuex(Vuexストアのオプションを利用しているときに限ります)。
To enable strict mode, simply pass in strict: true when creating a Vuex store.
厳格(strict)モードを有効にするにはVuexstoreを作成するときに、ただstrict:trueを指定するだけです。
Results: 95, Time: 0.0306

Top dictionary queries

English - Japanese