77eceedbf7
This reverts commit a3811f944819430c278b6da6b08dc322a9b9ff65.
17 lines
374 B
JavaScript
17 lines
374 B
JavaScript
export default {
|
|
props: {
|
|
backupCodes: {
|
|
type: Object,
|
|
default: () => ({
|
|
inProgress: false,
|
|
codes: []
|
|
})
|
|
}
|
|
},
|
|
data: () => ({}),
|
|
computed: {
|
|
inProgress () { return this.backupCodes.inProgress },
|
|
ready () { return this.backupCodes.codes.length > 0 },
|
|
displayTitle () { return this.inProgress || this.ready }
|
|
}
|
|
}
|