Skip to content

PerjakaSunda/autocomplete-highlight-mock-api

Repository files navigation

Vue-scaffold

A Vue.js project

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

Mock data (under /mock)

/api/hello.json => /api/hello.json.js

module.exports = {
  success: true,
  msg: 'Welcome to Your Vue.js App'
}

// Using user-defined funciton
module.exports = function(req, res) {
  // http://expressjs.com/en/api.html
  res.json({
    success: true,
    msg: 'Welcome to Your Vue.js App'
  })
}

// Define different HTTP methods
module.exports = {
  __GET: {
    msg: 'Welcome to Your Vue.js App'
  },

  __POST: {
    success: 'true'
  }
}

For detailed explanation on how things work, checkout the guide and docs for vue-loader.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published