- remove glyphicons- fonts
- add local open sans - reactive solr search - display flex for same height of columns - add .babelrec - add reactivesearch-vue components
This commit is contained in:
parent
9855c235b7
commit
c91a487b98
34 changed files with 1137 additions and 6825 deletions
25
resources/assets/js/search/app-class.js
Normal file
25
resources/assets/js/search/app-class.js
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { Component, Vue, Prop, Provide } from 'vue-property-decorator';
|
||||
import VsInput from './components/vs-input.vue';
|
||||
import rdrApi from './search-results/search-api';
|
||||
|
||||
@Component({
|
||||
components: {
|
||||
VsInput
|
||||
}
|
||||
})
|
||||
export default class App extends Vue {
|
||||
|
||||
results = [];
|
||||
bar = 'bar';
|
||||
|
||||
async onSearch(term) {
|
||||
console.log(term);
|
||||
this.results = await rdrApi.search(term);
|
||||
}
|
||||
|
||||
|
||||
mounted() {
|
||||
console.log('Component mounted.')
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue