Start on voice recording

This commit is contained in:
N-Pex 2021-02-22 16:34:19 +01:00
parent 3aef5b6b3e
commit fd86e753fe
7 changed files with 335 additions and 2 deletions

View file

@ -32,6 +32,13 @@ Vue.use((Vue) => {
};
});
// Register a global custom directive called `v-blur` that prevents focus
Vue.directive('blur', {
inserted: function (el) {
el.onfocus = (ev) => ev.target.blur()
}
});
Vue.use(navigation, router);
new Vue({