17 lines
276 B
Vue
17 lines
276 B
Vue
<template>
|
|
<div class="works">
|
|
<RecommendList />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineOptions({ name: 'Works' })
|
|
import RecommendList from "~/components/m/RecommendItem/index.vue";
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.works {
|
|
width: 100%;
|
|
}
|
|
</style>
|