Skip to content

Instantly share code, notes, and snippets.

@yano
Last active January 19, 2018 06:22
Show Gist options
  • Save yano/80e88c173c71ec1a6e769170fd771325 to your computer and use it in GitHub Desktop.
Save yano/80e88c173c71ec1a6e769170fd771325 to your computer and use it in GitHub Desktop.
Vue + Laravelまとめ

vue-resource

vue-devtool (chrome extension)

browerfy

bulma

// vue attributes // props, template, data(), methods

// vue life cycle // created, mounted, updated, destroyed

vue-loader https://vue-loader.vuejs.org/ja/start/setup.html

# 一度インストールしておく
sudo npm install -g vue-cli

# viewのプロジェクト作る
vue init webpack-simple hello-vue

cd hello-vue

# プロジェクトに必要なモジュールをインストールする
npm install

# 開発用のWebサーバ立ち上げる
npm run dev # ready to go!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment