Project

vails

0.0
No release in over 3 years
Low commit activity in last 3 years
a simple vue scaffold on rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 6.0.1, ~> 6.0.1
 Project Readme

Vails

一个简单的rails脚手架生成vue模板.

创建项目


rails new blog --api -T

添加gem Gemfile

……
gem 'webpacker'
gem 'vails'
……

安装gem

bundle
## 安装前端环境
rails webpacker:install
rails webpacker:install:vue
## 安装一些vue要用的库 必须
yarn add axios vuex vue-router
## 初始vails
rails g vue:install
## 最后
rails g vails Post title content:text

你就可以愉快的在rails上把玩vue啦