modules.js in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.61, at resources/assets/admin/modules.js
| 1 | import Vue from 'vue'; |
| 2 | import AddOnModules from './views/AddonModules'; |
| 3 | |
| 4 | import { |
| 5 | Button, |
| 6 | Select, |
| 7 | Input, |
| 8 | Switch, |
| 9 | Message, |
| 10 | RadioButton, |
| 11 | Radio, |
| 12 | RadioGroup |
| 13 | } from 'element-ui'; |
| 14 | |
| 15 | Vue.use(RadioButton); |
| 16 | Vue.use(Radio); |
| 17 | Vue.use(RadioGroup); |
| 18 | Vue.use(Button); |
| 19 | Vue.use(Select); |
| 20 | Vue.use(Input); |
| 21 | Vue.use(Switch); |
| 22 | |
| 23 | Vue.prototype.$message = Message; |
| 24 | |
| 25 | |
| 26 | var app = new Vue({ |
| 27 | el: '#ff_add_ons_app', |
| 28 | components: { |
| 29 | 'fluent-add-ons' : AddOnModules |
| 30 | } |
| 31 | }); |