Files
FiDA_Front/src/views/home/test.vue

25 lines
480 B
Vue
Raw Normal View History

2026-02-02 14:12:23 +08:00
<template>
<div class="test">
2026-02-05 15:26:34 +08:00
<p>Conversation Item - {{ id }}</p>
2026-02-02 14:12:23 +08:00
</div>
</template>
<script setup lang="ts">
import { computed } from 'vue'
2026-02-05 10:45:02 +08:00
import { useRoute } from 'vue-router'
const route = useRoute()
const id = computed(() => route.params.id)
2026-02-02 14:12:23 +08:00
</script>
<style lang="less" scoped>
.test {
2026-02-05 15:26:34 +08:00
margin: 2rem;
border-radius: 2rem;
background-color: rgb(242, 130, 90);
2026-02-02 14:12:23 +08:00
display: flex;
align-items: center;
justify-content: center;
font-size: 10rem;
}
</style>