index.vue 372 B

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