You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/User/components/Config/Department/Modal-Layout.vue

39 lines
1.3 KiB

5 years ago
<template>
<v-dialog v-model="$store.state.ConfigUserDepartments" width="60%" transition="slide-x-transition">
<v-card class="RTL">
<v-card-title class=" grey lighten-3" primary-title>
5 years ago
<WM-PartTitle class="WM-Margin-T-20" TitleFa=" ویرایش دپارتمان ها " TitleEn=" Edit Deparments " color="cyan"></WM-PartTitle>
5 years ago
</v-card-title>
<v-card-text>
<!-- <wm-duplicator-view></wm-duplicator-view> -->
<wm-list-view></wm-list-view>
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="cyan" depressed dark @click="$store.state.ConfigUserDepartments = false">
<v-icon dark right>fas fa-check</v-icon> بسیار خب
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
<script>
// import DuplicatorView from "@User/components/Config/Department/DuplicatorView.vue";
import ListView from "@User/components/Config/Department/ListView.vue";
export default {
components: {
// 'wm-duplicator-view' : DuplicatorView,
'wm-list-view' : ListView,
},
props: {
Color: { default: 'grey darken-4' },
},
};
</script>