17 lines
235 B
Vue
17 lines
235 B
Vue
|
|
|
|
<template>
|
|
<div>
|
|
部门列表5564546
|
|
<el-input v-model="input" placeholder="Please input" />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
const input = ref('')
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|