mirror of
https://github.com/ZeroCatDev/Classworks.git
synced 2026-03-22 10:23:30 +00:00
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>
|