mirror of
https://github.com/ZeroCatDev/Classworks.git
synced 2025-12-07 13:03:59 +00:00
Only modify the two files that need the fix, without any formatting changes. Co-authored-by: Sunwuyuan <88357633+Sunwuyuan@users.noreply.github.com>
16 lines
267 B
Vue
16 lines
267 B
Vue
<template>
|
|
<v-app-bar :elevation="2">
|
|
<template v-slot:prepend>
|
|
<v-app-bar-nav-icon></v-app-bar-nav-icon>
|
|
</template>
|
|
|
|
<v-app-bar-title>作业</v-app-bar-title>
|
|
</v-app-bar>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppHeader'
|
|
}
|
|
</script>
|