Get dashboard converted
This commit is contained in:
parent
33e09b5619
commit
11a70b0343
8 changed files with 332 additions and 325 deletions
|
@ -9,6 +9,6 @@ export default Vue.component('icon', {
|
|||
replace();
|
||||
},
|
||||
template: `
|
||||
<i data-feather="{{ name }}"></i>
|
||||
<i :data-feather="name"></i>
|
||||
`,
|
||||
});
|
||||
|
|
|
@ -32,12 +32,11 @@ export default Vue.component('navigation', {
|
|||
},
|
||||
|
||||
methods: {
|
||||
search: debounce(function (): void {
|
||||
// @todo why is this not liked?
|
||||
// if (this.searchTerm.length >= 3) {
|
||||
// this.loadingResults = true;
|
||||
// this.gatherSearchResults();
|
||||
// }
|
||||
search: debounce(function (this: any): void {
|
||||
if (this.searchTerm.length >= 3) {
|
||||
this.loadingResults = true;
|
||||
this.gatherSearchResults();
|
||||
}
|
||||
}, 500),
|
||||
|
||||
gatherSearchResults: function (): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue