mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
development section is added
This commit is contained in:
parent
ab4ed9138f
commit
8878ebd0c6
2 changed files with 21 additions and 0 deletions
19
src/DevelopmentSection.vue
Normal file
19
src/DevelopmentSection.vue
Normal file
|
@ -0,0 +1,19 @@
|
|||
<template>
|
||||
<div>
|
||||
<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>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
isProduction: null
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.isProduction = process.env.NODE_ENV === 'development';
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue