Skip to content
Snippets Groups Projects
Commit c7e853d1 authored by Timothee P's avatar Timothee P :sunflower:
Browse files

add missing computed after merge

parent c8be4bd1
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,10 @@ export default {
}
return options.length > 0 ? options : null;
},
placehold() {
return this.input ? "" : this.placeholder;
},
},
data() {
......@@ -63,7 +67,7 @@ export default {
identifier: 0,
};
},
methods: {
toggleDropdown(val) {
if (this.isOpen) {
......@@ -99,10 +103,7 @@ export default {
},
created() {
let randomnum =
Math.floor(
Math.random() * 10000
);
let randomnum = Math.floor(Math.random() * 10000);
this.identifier = randomnum;
window.addEventListener("mousedown", this.clickOutsideDropdown);
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment