- 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:
Arno Kaimbacher 2019-09-27 18:02:48 +02:00
commit c91a487b98
34 changed files with 1137 additions and 6825 deletions

View 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.')
}
}