1234567891011121314151617181920 |
- <template>
- <div style="height:80vh">
- <iframe width="100%" height="100%" :src="'http://127.0.0.1:8888/form-generator/#/'" frameborder="0"></iframe>
- </div>
- </template>
- <script>
- var path = process.env.VUE_APP_BASE_API
- export default {
- name:"FormGenerator",
- data(){
- return{
- basePath:path
- }
- },
- };
- </script>
- <style lang="scss">
- </style>
|