[![enter image description here][1]][1]
- Host
- Mac OS X 10.10.5
- Network: 192.168.99.0/24
- IP: 192.168.99.110 (Static IP)
| package tw.ccc99.bpandsvc; | |
| /** | |
| * Created by AlanJui on 2014/5/17. | |
| */ | |
| import java.util.*; | |
| public class RentABike { |
| <ul> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| </ul> |
| /** | |
| * Say Hello to Java!! | |
| */ | |
| public class HelloJava { | |
| public static void main(String args[]) { | |
| System.out.println("Hello Java!!"); | |
| } | |
| } |
| /** | |
| * Created by AlanJui on 15/10/1. | |
| */ | |
| var should = require('should'); | |
| var request = require('supertest'); | |
| var mongodb = require('mongodb'); | |
| var MongoClient = mongodb.MongoClient; | |
| var ObjectID = mongodb.ObjectID; | |
| var tools = require('../libs/tools'); |
| interface IWellcome { | |
| greet(): any; | |
| } | |
| class User { | |
| firstName: string; | |
| lastName: string; | |
| constructor(firstName: string, lastName: string) { | |
| this.firstName = firstName; |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "peru/ubuntu-18.04-desktop-amd64" | |
| config.vm.box_version = "20190401.01" | |
| # config.vm.network "public_network" | |
| # config.vm.network "public_network", ip: "192.168.66.41" | |
| config.vm.network "public_network", bridge: "enp5s0", ip: "192.168.66.42" | |
| # config.vm.network "public_network", auto_config: false |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Maintainer: | |
| " Alan Jui : [email protected] | |
| " | |
| " Version: | |
| " V 0.4.0 2019/07/01 00:14 | |
| " | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
【參考文件】: https://cli.vuejs.org/guide/prototyping.html
安裝前準備
Vue CLI 需搭配 Node.js 版本 8.11.0+ 。故請先用以下指令檢查目前使用中之 Node.js 版本。