15 lines
220 B
TypeScript
Executable File
15 lines
220 B
TypeScript
Executable File
import { computed, defineComponent, ref, watch } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'CProvaPao',
|
|
props: {
|
|
username: {
|
|
type: String,
|
|
required: true,
|
|
default: '',
|
|
},
|
|
},
|
|
})
|
|
|
|
|