Enabling Vue.js (vue-loader)

Screencast

スクリーンキャスト

Do you prefer video tutorials? Check out the Vue screencast series.

ビデオチュートリアルが好きですか? Vue スクリーンキャスト シリーズをご覧ください。

Tip

ヒント

Check out live demos of Symfony UX Vue.js component at https://ux.symfony.com/vue!

https://ux.symfony.com/vue で Symfony UX Vue.js コンポーネントのライブデモをチェックしてください!

Want to use Vue.js? No problem! First enable it in webpack.config.js:

Vue.js を使いたいですか?問題ない!最初に webpack.config.js で有効にします。
1
2
3
4
5
6
7
8
9
// webpack.config.js
  // ...

  Encore
      // ...
      .addEntry('main', './assets/main.js')

+     .enableVueLoader()
  ;

Then restart Encore. When you do, it will give you a command you can run to install any missing dependencies. After running that command and restarting Encore, you're done!

その後、アンコールを再起動します。実行すると、不足している依存関係をインストールするために実行できるコマンドが表示されます。そのコマンドを実行して Encore を再起動したら、完了です。

Any .vue files that you require will be processed correctly. You can also configure the vue-loader options by passing an options callback to enableVueLoader(). See the Encore's index.js file for detailed documentation.

必要な .vue ファイルはすべて正しく処理されます。オプション コールバックを enableVueLoader() に渡すことで、vue-loader オプションを設定することもできます。詳細なドキュメントについては、Encore の index.js ファイルを参照してください。

Runtime Compiler Build

By default, Encore uses a Vue "build" that allows you to compile templates at runtime. This means that you can do either of these:

デフォルトでは、Encore は実行時にテンプレートをコンパイルできる Vue の「ビルド」を使用します。これは、次のいずれかを実行できることを意味します。
1
2
3
4
5
6
7
new Vue({
    template: '<div>{{ hi }}</div>'
})

new Vue({
    el: '#app', // where <div id="app"> in your DOM contains the Vue template
});

If you do not need this functionality (e.g. you use single file components), then you can tell Encore to create a smaller build following Content Security Policy:

この機能が必要ない場合 (単一ファイル コンポーネントを使用する場合など)、コンテンツ セキュリティ ポリシーに従って、より小さいビルドを作成するように Encore に指示できます。
1
2
3
4
5
6
7
8
// webpack.config.js
// ...

Encore
    // ...

    .enableVueLoader(() => {}, { runtimeCompilerBuild: false })
;

You can also silence the recommendation by passing runtimeCompilerBuild: true.

また、runtimeCompilerBuild: true を渡すことで、推奨事項を無効にすることもできます。

Hot Module Replacement (HMR)

The vue-loader supports hot module replacement: just update your code and watch your Vue.js app update without a browser refresh! To activate it, use the dev-server:

vue-loader はホット モジュール交換をサポートしています: コードを更新するだけで、ブラウザーを更新せずに Vue.js アプリの更新を監視できます!有効にするには、dev-server を使用します。
1
2
3
4
5
# if you use the Yarn package manager
$ yarn encore dev-server

# if you use the npm package manager
$ npm run dev-server

That's it! Change one of your .vue files and watch your browser update. But note: this does not currently work for style changes in a .vue file. Seeing updated styles still requires a page refresh.

それでおしまい! .vue ファイルの 1 つを変更し、ブラウザーの更新を監視します。ただし、これは現在、.vue ファイルのスタイル変更には機能しません。更新されたスタイルを表示するには、ページを更新する必要があります。

See Using webpack-dev-server and HMR for more details.

詳細については、webpack-dev-server と HMR の使用を参照してください。

JSX Support

You can enable JSX with Vue.js by configuring the second parameter of the .enableVueLoader() method:

.enableVueLoader() メソッドの 2 番目のパラメーターを構成することで、Vue.js で JSX を有効にできます。
1
2
3
4
5
6
7
8
9
10
11
12
// webpack.config.js
  // ...

  Encore
      // ...
      .addEntry('main', './assets/main.js')

-     .enableVueLoader()
+     .enableVueLoader(() => {}, {
+         useJsx: true
+     })
  ;

Next, run or restart Encore. When you do, you will see an error message helping you install any missing dependencies. After running that command and restarting Encore, you're done!

次に、Encore を実行または再起動します。実行すると、不足している依存関係をインストールするのに役立つエラー メッセージが表示されます。そのコマンドを実行して Encore を再起動したら、完了です。

Your .jsx files will now be transformed through @vue/babel-preset-jsx.

.jsx ファイルは @vue/babel-preset-jsx を介して変換されます。

Using styles

You can't use <style> in .jsx files. As a workaround, you can import .css, .scss, etc. files manually:

.jsx ファイルでは使用できません。回避策として、.css、.scss などのファイルを手動でインポートできます。
1
2
3
4
5
6
7
8
9
10
11
12
13
// App.jsx
import './App.css'

export default {
    name: 'App',
    render() {
        return (
            <div>
                ...
            </div>
        )
    }
}

Note

ノート

Importing styles this way makes them global. See the next section for scoping them to your component.

この方法でスタイルをインポートすると、スタイルがグローバルになります。コンポーネントのスコープについては、次のセクションを参照してください。

Using Scoped Styles

You can't use Scoped Styles (<style scoped>) either in .jsx files. As a workaround, you can use CSS Modules by suffixing import paths with ?module:

Scoped Styles () は .jsx ファイルでも使用できません。回避策として、インポート パスの末尾に?module を付けることで、CSS モジュールを使用できます。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Component.jsx
import styles from './Component.css?module' // suffix with "?module"

export default {
    name: 'Component',
    render() {
        return (
            <div>
                <h1 class={styles.title}>
                    Hello World
                </h1>
            </div>
        )
    }
}
1
2
3
4
5
/* Component.css */

.title {
    color: red
}

The output will be something like <h1 class="title_a3dKp">Hello World</h1>.

出力は Hello World のようなものになります。

Using images

You can't use <img src="./image.png"> in .jsx files. As a workaround, you can import them with require() function:

.jsx ファイルでは使用できません。回避策として、require() 関数を使用してインポートできます。
1
2
3
4
5
6
7
8
9
10
export default {
    name: 'Component',
    render() {
        return (
            <div>
                <img src={require("./image.png")}/>
            </div>
        )
    }
}

Using Vue inside Twig templates

Twig templates can instantiate a Vue.js app in the same way as any other JavaScript code. However, given that both Twig and Vue.js use the same delimiters for variables, you should configure the delimiters Vue.js option to change the default variable delimiters.

Twig テンプレートは、他の JavaScript コードと同じ方法で Vue.js アプリをインスタンス化できます。ただし、Twig と Vue.js の両方が変数に同じ区切り文字を使用することを考えると、delimiters Vue.js オプションを構成してデフォルトの変数区切り文字を変更する必要があります。

If you set for example delimiters: ['${', '}$'], then you can use the following in your Twig templates:

たとえば、区切り文字 ['${', '}$'] を設定すると、Twig テンプレートで次のものを使用できます。
1
2
{{ twig_variable }}   {# renders a Twig variable #}
${ vuejs_variable }$  {# renders a Vue.js variable #}