20 lines
387 B
Vue
20 lines
387 B
Vue
<template>
|
|
<div>
|
|
<CodeDialog @code-verified="(verified) => showComponent = verified"/>
|
|
</div>
|
|
<ExportPurchasesForTryton v-if="showComponent" />
|
|
</template>
|
|
<script>
|
|
import CodeDialog from '../components/CodeDialog.vue'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
showComponent: false,
|
|
}
|
|
},
|
|
components: { CodeDialog },
|
|
methods: {},
|
|
}
|
|
</script>
|