Go to file
andy bunce 1da5adc834 test fromandroid 2017-09-10 16:39:19 +01:00
.settings vuetify 0.14.8 2017-08-09 10:50:31 +01:00
src/vue-poc loader 2017-09-08 11:36:47 +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 test fromandroid 2017-09-10 16:39:19 +01: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

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
  }