Go to file
andy 898ce9ab71 Merge branch 'master' of https://github.com/apb2006/vue-poc.git 2019-07-24 22:24:25 +01:00
.idea vuetify 1.3.14 2018-12-17 10:24:08 +00:00
.settings [mod] vuetify 1.5.16 2019-07-24 22:24:00 +01:00
src/vue-poc [mod] vuetify 1.5.16 2019-07-24 22:24:00 +01:00
tests/locust 0.14.11 2017-08-15 22:48:37 +01:00
.project initial commit 2017-05-22 14:27:25 +01:00
LICENSE Initial commit 2017-05-22 12:44:59 +01:00
README.md vuetify 1.4.3 2019-01-24 10:47:38 +00:00
vue-poc.iml vuetify 1.3.14 2018-12-17 10:24:08 +00:00

README.md

vue-poc

A test of using vue.js as UI Includes:

  • material design (using vuetify)
  • ace editor
  • localforage for persistence

Edit via android

Bugs

  • requests not stopped after unload

Settings

Global settings provides getItem(name) and setItem(name.value) Example usage

 created: function () {
    settings.getItem('settings/ace')
    .then((v)=>{
      this.ace=v
    })

  },
  watch: {"ace":{
    handler:function(v){
      settings.setItem('settings/ace',this.ace)
      },
    deep:true
  }