Go to file
2020-09-02 21:50:38 +01: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 Entity reorg 2020-09-02 21:50:38 +01:00
tests update cypress 2020-04-12 13:16:27 +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 update cypress 2020-04-12 13:16:27 +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

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
  }