21 lines
321 B
Vue
21 lines
321 B
Vue
![]() |
<template>
|
||
|
<div>
|
||
|
iframeIndex
|
||
|
<el-input v-model="val"></el-input>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { toRefs, reactive } from "vue";
|
||
|
export default {
|
||
|
name: "iframeIndex",
|
||
|
setup() {
|
||
|
const state = reactive({
|
||
|
val: "",
|
||
|
});
|
||
|
return {
|
||
|
...toRefs(state),
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
</script>
|