123456789101112131415161718 |
- <template>
- <!-- 记录项 -->
- <div>
- <el-input v-model="input" style="width: 240px" placeholder="Please input" />
- </div>
- </template>
- <script lang="ts" setup>
- defineOptions({
- name: "Jialuxiang",
- });
- const input = ref("");
- onActivated(() => {
- console.log("active");
- });
- </script>
- <style lang="scss" scoped></style>
|