11 lines
277 B
Vue
11 lines
277 B
Vue
|
<script setup lang="ts">
|
||
|
import { ref } from 'vue';
|
||
|
import 'vue-loading-overlay/dist/vue-loading.css';
|
||
|
|
||
|
const input = ref('')
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<el-input v-model="input" placeholder="Please input A" />
|
||
|
<el-input v-model="input" placeholder="Please input B" />
|
||
|
</template>
|