Go to file
Andy Bunce 251cf23fd8 [fix] thumbnail generation 2017-08-21 12:44:28 +01:00
.settings vuetify 0.14.8 2017-08-09 10:50:31 +01:00
src/vue-poc [fix] thumbnail generation 2017-08-21 12:44:28 +01:00
tests/locust 0.14.11 2017-08-15 22:48:37 +01:00
tools vuetify 0.14.8 2017-08-09 10:50:31 +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.14.7 2017-07-27 21:44:30 +01:00

README.md

vue-poc

A test of using vue.js as UI Includes:

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

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
  }