Go to file
2020-10-26 12:22:55 +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
src/vue-poc [MOD] run task 2020-10-26 12:22:55 +00:00
tests [MOD] beef up models 2020-09-30 18:29:01 +01:00
.project vuetify 2.1.14 2019-12-13 23:06:33 +00:00
LICENSE Initial commit 2017-05-22 12:44:59 +01:00
README.md qd-table 2020-10-22 22:19:51 +01:00
simple.xqm vuetify 2.1.9 2019-11-07 13:07:42 +00:00
vue-poc.iml vuetify 1.3.14 2018-12-17 10:24:08 +00:00

vue-poc

A test of using https://vuetifyjs.com/en/ as UI Includes:

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

Icons

Tests

Cypress

https://github.com/cypress-io/cypress

cd ~\git\vue-poc\tests>
npx cypress open

or...

npx cypress run

Settings

Required BaseX options https://docs.basex.org/wiki/Options

CHOP = false
LOGTRACE = false
RESTXQERRORS = false
GZIP = true

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
  }