Каркас будущего приложения

This commit is contained in:
Book Pauk
2022-08-16 14:54:41 +07:00
parent c3a0ce183e
commit 78be5a9856
22 changed files with 980 additions and 8 deletions

View 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>