-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee3fc3e
commit 92b3bb7
Showing
8 changed files
with
64 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
<div> | ||
demo howmview | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
name:"HomeView" | ||
} | ||
</script> | ||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
<router-view></router-view> | ||
</template> | ||
<script> | ||
export default {} | ||
</script> | ||
<style scoped> | ||
</style> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<script setup> | ||
import SidebarView from "@/views/repeat/SidebarView.vue"; | ||
import HeaderView from "@/views/repeat/HeaderView.vue"; | ||
</script> | ||
|
||
<template> | ||
<a-layout> | ||
<a-layout-sider><sidebar-view></sidebar-view></a-layout-sider> | ||
<a-layout> | ||
<a-layout-header><header-view></header-view></a-layout-header> | ||
<a-layout-content></a-layout-content> | ||
<a-layout-footer>4</a-layout-footer> | ||
</a-layout> | ||
</a-layout> | ||
</template> | ||
<script> | ||
export default {} | ||
</script> | ||
|
||
<style scoped> | ||
</style> |
File renamed without changes.