18 lines
321 B
Vue
18 lines
321 B
Vue
<template>
|
|
<div style="height:80vh">
|
|
<iframe width="100%" height="100%" :src="basePath+':8888/form-generator/#/'" frameborder="0" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
var path = import.meta.env.VITE_BASE_PATH
|
|
export default {
|
|
name: 'FormGenerator',
|
|
data() {
|
|
return {
|
|
basePath: path
|
|
}
|
|
}
|
|
}
|
|
</script>
|