19 lines
452 B
Vue
19 lines
452 B
Vue
<template>
|
|
<div>
|
|
<div
|
|
v-for="item in 15"
|
|
class="bg-white h-20 rounded-lg p-3 mb-2 flex flex-col justify-center cursor-pointer"
|
|
>
|
|
<div class="text-base">你师傅说房东说短发女生的方式对佛呢</div>
|
|
<div class="text-[12px] text-gray-400 mt-1">2010-22-12 18:32:11</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |