You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
495 B
27 lines
495 B
4 years ago
|
<template>
|
||
|
<theme class="h-full w-full pt-1">
|
||
|
<view class="bg-white m-5 rounded-md p-3">
|
||
|
<view class="flex justify-between text-gray-400 mb-2">
|
||
|
<view>插件名</view> <view>提交时间</view>
|
||
|
</view>
|
||
|
<view class="text-blue-400 mb-2">
|
||
|
链接
|
||
|
</view>
|
||
|
<view class="mb-2">审核人</view>
|
||
|
</view>
|
||
|
</theme>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|