PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.6.61
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.6.61
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / resources / assets / common / Notification.vue

Notification.vue in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.61, at resources/assets/common/Notification.vue

14 lines 464 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <template>
2 <div class="vue-notification" :class="'vue-' + notification.type" v-show="notification.active">
3 <button type="button" class="close" aria-label="Close" @click="notification.active = false">
4 <span aria-hidden="true">×</span>
5 </button>
6 <p v-for="message in notification.messages">{{ message }}</p>
7 </div>
8 </template>
9
10 <script type="text/babel">
11 export default {
12 name: 'notification'
13 }
14 </script>