index.vue 366 B

1234567891011121314151617181920
  1. <template>
  2. <div style="height:80vh">
  3. <iframe width="100%" height="100%" :src="basePath+':8888/form-generator/#/'" frameborder="0"></iframe>
  4. </div>
  5. </template>
  6. <script>
  7. var path = process.env.VUE_APP_BASE_PATH
  8. export default {
  9. name:"FormGenerator",
  10. data(){
  11. return{
  12. basePath:path
  13. }
  14. },
  15. };
  16. </script>
  17. <style lang="scss">
  18. </style>