Go to file
Andy Bunce d94be79344 [mod] svg view start 2021-01-27 22:25:00 +00: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
doc [add] components 2021-01-14 23:24:01 +00:00
src/vue-poc [mod] svg view start 2021-01-27 22:25:00 +00:00
tests vuetify@2.4.2 2021-01-08 17:20:58 +00:00
.project vuetify@2.4.2 2021-01-08 17:20:58 +00:00
LICENSE [mod] add docs 2021-01-13 20:14:23 +00:00
README.md [mod] add docs 2021-01-13 20:14:23 +00:00
vue-poc.iml vuetify 1.3.14 2018-12-17 10:24:08 +00:00

README.md

Vue-poc

An experiment using https://vuetifyjs.com/en/ as UI for BaseX Includes:

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

Topics

Other

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
  }