nihwang / vue-todo

A simple Vue todo app with Vuex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue Todo with Vuex

A simple Todo app done with Vue and Vuex!

Libraries included:

Other Features

  • SCSS is enabled in this skeleton so that you don't have to specify SCSS in every vue file.
  • Use static/stylesheets/utils.scss and static/stylesheets/base-styles.scss to import into files to use shared styles. Best used for storing variables and styles that can be shared.
<style scoped>
  @import '../../static/stylesheets/utils.scss';

  .container {
  }

  .line {
    width: 100%;
    height: 1px;
    border: solid 1px #e1e9f2;
  }

</style>

Build Setup

# install dependencies
npm install

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

# build for production with minification
npm run build

# run unit tests
npm run unit

# run e2e tests
npm run e2e

# run all tests
npm test

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

About

A simple Vue todo app with Vuex


Languages

Language:JavaScript 79.8%Language:Vue 14.9%Language:HTML 3.2%Language:CSS 2.1%