Каркас будущего приложения
This commit is contained in:
38
client/components/Search/Search.vue
Normal file
38
client/components/Search/Search.vue
Normal file
@@ -0,0 +1,38 @@
|
||||
<template>
|
||||
<div class="root row fit">
|
||||
<div>Search</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
//-----------------------------------------------------------------------------
|
||||
import vueComponent from '../vueComponent.js';
|
||||
|
||||
//import _ from 'lodash';
|
||||
|
||||
const componentOptions = {
|
||||
components: {
|
||||
},
|
||||
watch: {
|
||||
},
|
||||
};
|
||||
class Search {
|
||||
_options = componentOptions;
|
||||
|
||||
created() {
|
||||
this.commit = this.$store.commit;
|
||||
}
|
||||
|
||||
mounted() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default vueComponent(Search);
|
||||
//-----------------------------------------------------------------------------
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.root {
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user