2022-06-19 13:03:56 +00:00
|
|
|
<template>
|
2022-06-19 13:21:56 +00:00
|
|
|
<slot v-if="isProduction" />
|
|
|
|
<p v-else>This section is under development. After the necessary tests and improvements are made, it will be shared with the users as soon as possible.</p>
|
2022-06-19 13:03:56 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isProduction: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.isProduction = process.env.NODE_ENV === 'development';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|