27 lines
537 B
TypeScript
Executable File
27 lines
537 B
TypeScript
Executable File
import { defineComponent, ref } from 'vue'
|
|
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { useProducts } from '@store/Products'
|
|
import { useI18n } from '@/boot/i18n'
|
|
import { tools } from '@store/Modules/tools'
|
|
|
|
export default defineComponent({
|
|
name: 'CSelectUserActive',
|
|
props: {
|
|
},
|
|
components: {},
|
|
setup(props, { emit }) {
|
|
const { t } = useI18n()
|
|
|
|
const userStore = useUserStore()
|
|
const productStore = useProducts()
|
|
|
|
return {
|
|
userStore,
|
|
productStore,
|
|
t,
|
|
tools,
|
|
}
|
|
},
|
|
})
|