Go to file
andy bunce bfa9a9da67 [fix] parse error detection 2019-05-14 19:18:39 +02:00
.idea vuetify 1.3.14 2018-12-17 10:24:08 +00:00
.settings tabs load 2018-06-13 23:06:16 +01:00
src/vue-poc [fix] missing module lib 2019-04-27 21:53:29 +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
  }