@@ -44,7 +44,7 @@ app.component('my-component', {
44
44
const MyComponent = app .component (' my-component' )
45
45
```
46
46
47
- - ** こちらも :** [ Components] ( ../guide/component-basics.html )
47
+ - ** 参照 :** [ Components] ( ../guide/component-basics.html )
48
48
49
49
## config
50
50
@@ -61,7 +61,7 @@ const app = createApp({})
61
61
app .config = {... }
62
62
```
63
63
64
- - ** こちらも :** [ Application Config] ( ./application-config.html )
64
+ - ** 参照 :** [ Application Config] ( ./application-config.html )
65
65
66
66
## directive
67
67
@@ -158,7 +158,7 @@ el にて受け取った実際の DOM 要素の blueprint を表します。
158
158
` el ` を除き、これらはすべて読み取り専用であり、変更してはいけません。フック間にて情報を共有したい場合、要素の[ データセット] ( https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset ) を通して情報を共有することを推奨します。
159
159
:::
160
160
161
- - ** こちらも :** [ Custom Directives] ( ../guide/custom-directive.html )
161
+ - ** 参照 :** [ Custom Directives] ( ../guide/custom-directive.html )
162
162
163
163
## mixin
164
164
@@ -174,7 +174,7 @@ el にて受け取った実際の DOM 要素の blueprint を表します。
174
174
175
175
アプリケーションスコープ全体に mixin を適用します。一度登録された場合、該当のアプリケーション内の任意のコンポーネントのテンプレートで利用することができます。プラグイン作者がコンポーネントにカスタムの振る舞いを注入するために使用することができます。** アプリケーションコードでは推奨されません。** .
176
176
177
- - ** こちらも :** [ Global Mixin] ( ../guide/mixins.html#global-mixin )
177
+ - ** 参照 :** [ Global Mixin] ( ../guide/mixins.html#global-mixin )
178
178
179
179
## mount
180
180
@@ -207,7 +207,7 @@ const app = createApp({})
207
207
app .mount (' #my-app' )
208
208
```
209
209
210
- - ** こちらも :**
210
+ - ** 参照 :**
211
211
- [ Lifecycle Diagram] ( ../guide/instance.html#lifecycle-diagram )
212
212
213
213
## provide
@@ -254,7 +254,7 @@ const app = createApp({
254
254
app .provide (' user' , ' administrator' )
255
255
```
256
256
257
- - ** こちらも :**
257
+ - ** 参照 :**
258
258
- [ Provide / Inject] ( ../guide/component-provide-inject.md )
259
259
260
260
## unmount
@@ -305,4 +305,4 @@ setTimeout(() => app.unmount('#my-app'), 5000)
305
305
306
306
同じプラグインに対してこのメソッドが複数回呼び出された場合、プラグインは一度だけインストールされます。
307
307
308
- - ** こちらも :** [ Plugins] ( ../guide/plugins.html )
308
+ - ** 参照 :** [ Plugins] ( ../guide/plugins.html )
0 commit comments