Go to file
Andy Bunce 4c17e1a1a3 mimetypes 2018-06-14 22:58:08 +01:00
.settings tabs load 2018-06-13 23:06:16 +01:00
src/vue-poc mimetypes 2018-06-14 22:58:08 +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 0.17.3 2017-12-04 09:25:49 +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
  }