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