primevue-mirror/src/DevelopmentSection.vue

17 lines
462 B
Vue
Raw Normal View History

2022-06-19 13:03:56 +00:00
<template>
<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>