2021-05-31 10:15:23 +08:00

29 lines
345 B
Vue

<template>
<div class="project-list">
list
</div>
</template>
<style lang="scss" scoped>
:global {
.project-list {
display: flex;
align-items: flex-start;
}
}
</style>
<script>
export default {
name: "ProjectList",
data() {
return {
}
},
mounted() {
},
}
</script>