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