mirror of
https://github.com/ZeroCatDev/Classworks.git
synced 2026-06-13 10:35:07 +00:00
- Updated Vue components in `src/pages/list/index.vue`, `src/pages/settings.vue`, and `src/pages/socket-debugger.vue` for better readability by adjusting indentation and line breaks. - Enhanced the `dataProvider.js` utility to streamline server and local data handling, including the introduction of a sync queue for offline write buffering. - Incremented the local database version in `kvLocalProvider.js` to accommodate new sync queue features. - Added a new `CLAUDE.md` file to provide project overview and development guidelines. - Commented out the Sentry vendor chunk in `vite.config.mjs` for potential future use.
16 lines
242 B
Vue
16 lines
242 B
Vue
<template>
|
|
<v-app-bar :elevation="2">
|
|
<template #prepend>
|
|
<v-app-bar-nav-icon />
|
|
</template>
|
|
|
|
<v-app-bar-title>作业</v-app-bar-title>
|
|
</v-app-bar>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppHeader'
|
|
}
|
|
</script>
|