Client - refactor app types and interfaces

This commit is contained in:
Sam
2021-08-11 18:33:28 +02:00
parent 6b848228ca
commit 1d7cb5c9ee
5 changed files with 6 additions and 7 deletions

View File

@ -19,7 +19,8 @@
<script lang="ts">
import { PropType, defineComponent, ref } from 'vue'
import { IDropdownOption, TDropdownOptions } from '@/types'
import { IDropdownOption } from '@/interfaces'
import { TDropdownOptions } from '@/types'
export default defineComponent({
name: 'Dropdown',