0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

rails + vue 環境構築

Last updated at Posted at 2019-08-08

Vueの導入

Gem の導入

Gemfile
gem "webpacker", github: "rails/webpacker"

bundle install

yarn の導入

versionが出ればインストール済

$ brew install yarn

$ yarn -v
yarn install 1.15.2

webpacker のインストール

$ bundle exec rails webpacker:install


Rails で webpack を使うために必要な設定ファイルが自動作成される。

Vue の初期ファイルの導入

$ bundle exec rails webpacker:install:vue

Vue を動かすのに必要なファイルが自動的に作成されます。

vueを表示する設定

各ファイルの修正

config/routes.rb
Rails.application.routes.draw do
+  root 'homes#index'
  resources :articles
  resources :users, defaults: { format: :json }
-  get 'homes/index'
end
controllers/homes_controller.rb
class HomesController < ApplicationController
  def index
  end
end
views/homes/index.html.erb
<%= javascript_pack_tag 'hello_vue' %>
<%= stylesheet_pack_tag 'hello_vue' %>
<h1>Homes#index</h1>

サーバー立ち上げ

二つ必要

# Rails server の立ち上げ
$ bundle exec rails s

# Frontend server の立ち上げ
$ bin/webpack-dev-server

以下のようになっていれば、Vue の導入はひとまず OK!

helloVue.png
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?