File tree 3 files changed +4
-234
lines changed
3 files changed +4
-234
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 14
14
export default {
15
15
props: {
16
16
href: { type: String , required: true },
17
- title: { type: String , required: true },
18
- },
17
+ title: { type: String , required: true }
18
+ }
19
19
}
20
20
</script >
21
21
<style scoped>
@@ -56,4 +56,4 @@ export default {
56
56
border-bottom : 5px solid transparent ;
57
57
border-left : 8px solid #fff ;
58
58
}
59
- </style >
59
+ </style >
Original file line number Diff line number Diff line change @@ -2,23 +2,19 @@ import './styles/index.css'
2
2
import { h , App } from 'vue'
3
3
import { VPTheme } from '@vue/theme'
4
4
import PreferenceSwitch from './components/PreferenceSwitch.vue'
5
- import VueSchoolLink from './components/VueSchoolLink.vue'
6
- import VueSchoolBanner from './components/VueSchoolBanner.vue'
7
5
import {
8
6
preferComposition ,
9
7
preferSFC ,
10
8
filterHeadersByPreference
11
9
} from './components/preferences'
12
10
import SponsorsAside from './components/SponsorsAside.vue'
11
+ import VueSchoolLink from './components/VueSchoolLink.vue'
13
12
import VueJobs from './components/VueJobs.vue'
14
13
15
14
export default Object . assign ( { } , VPTheme , {
16
15
Layout : ( ) => {
17
16
// @ts -ignore
18
17
return h ( VPTheme . Layout , null , {
19
- banner : ( ) => h ( 'div' , { } , [
20
- h ( VueSchoolBanner )
21
- ] ) ,
22
18
'sidebar-top' : ( ) => h ( PreferenceSwitch ) ,
23
19
'aside-mid' : ( ) => h ( SponsorsAside ) ,
24
20
'aside-bottom' : ( ) => h ( VueJobs )
You can’t perform that action at this time.
0 commit comments