Skip to content
Snippets Groups Projects
Unverified Commit 1019e0bc authored by Zero King's avatar Zero King Committed by GitHub
Browse files

Add prop validations in MkAcct (#7439)

parent faf2c007
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,16 @@ import { toUnicode } from 'punycode/';
import { host } from '@client/config';
export default defineComponent({
props: ['user', 'detail'],
props: {
user: {
type: Object,
required: true
},
detail: {
type: Boolean,
default: false
},
},
data() {
return {
host: toUnicode(host),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment