WIP Items module.

This commit is contained in:
Ahmed Bouhuolia
2019-09-03 02:07:28 +02:00
parent cb8c294d74
commit 70809cb05c
142 changed files with 12674 additions and 64 deletions

View File

@@ -0,0 +1,31 @@
<template>
</template>
<script>
const STATE = {
LOADING: 1,
EMPTY_LIST: 2,
NO_SEARCH_RESULTS: 3,
};
export default {
name: 'customers-list',
data() {
return {
current_state: 0,
};
},
computed: {
loading() {
return this.current_state === STATE.LOADING;
},
emptyList() {
return this.current_state === STATE.EMPTY_LIST;
},
noSearchResults() {
return this.current_state === STATE.NO_SEARCH_RESULTS;
},
},
}
</script>

View File

@@ -26,8 +26,12 @@ export default {
</script>
<style lang="scss">
#dashboard{
.dashboard{
display: flex;
flex-direction: row;
&__content{
width: 100%;
}
}
</style>

View File

@@ -0,0 +1,3 @@
<template>
</template>

View File

@@ -0,0 +1,9 @@
<template>
</template>
<script>
export default {
name: 'products-list',
}
</script>