18 lines
209 B
Vue
18 lines
209 B
Vue
<template>
|
|
<el-main>
|
|
<h1>学生想法</h1>
|
|
</el-main>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "StudentThought"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-main{
|
|
padding: 0;
|
|
}
|
|
</style>
|