other components...

This commit is contained in:
Paolo Arena
2021-09-04 15:05:34 +02:00
parent 1c3df0fac1
commit fcc4f61f07
110 changed files with 4592 additions and 566 deletions

View File

@@ -0,0 +1,24 @@
import { CCard } from '@components'
import MixinOperator from '../../mixins/mixin-operator'
import { defineComponent, ref } from 'vue'
export default defineComponent({
name: 'CCardOperator',
components: { CCard },
props:{
username: {
type: String,
required: true,
},
},
setup(props) {
const tab = ref('one')
const { getOperatorByUsername } = MixinOperator()
return {
tab,
getOperatorByUsername,
}
},
})