Start on voice recording
This commit is contained in:
parent
3aef5b6b3e
commit
fd86e753fe
7 changed files with 335 additions and 2 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue