File tree 3 files changed +15
-12
lines changed
3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 2
2
<CFooter >
3
3
<div >
4
4
<a href =" https://coreui.io" target =" _blank" >CoreUI</a >
5
- <span class =" ml-1" >© ; {{new Date().getFullYear()}} creativeLabs.</span >
5
+ <span class =" ms-1"
6
+ >© ; {{ new Date().getFullYear() }} creativeLabs.</span
7
+ >
6
8
</div >
7
- <div class =" mfs -auto" >
9
+ <div class =" ms -auto" >
8
10
<span class =" me-1" target =" _blank" >Powered by</span >
9
11
<a href =" https://coreui.io/vue" >CoreUI for Vue</a >
10
12
</div >
13
15
14
16
<script >
15
17
export default {
16
- name: " AppFooter" ,
17
- };
18
+ name: ' AppFooter' ,
19
+ }
18
20
</script >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<CCallout color =" info" class =" bg-white" >
3
- A Vue {{name}} component {{plural ? 'have' : 'has'}} been created as a native
4
- Vue.js version of Bootstrap {{name}}. {{name}} {{plural ? 'are' : 'is'}}
3
+ A Vue {{ name }} component {{ plural ? 'have' : 'has' }} been created as a
4
+ native Vue.js version of Bootstrap {{ name }}. {{ name }}
5
+ {{ plural ? 'are' : 'is' }}
5
6
delivered with some new features, variants, and unique design that matches
6
7
CoreUI Design System requirements.
7
8
<br />
@@ -29,7 +30,7 @@ export default {
29
30
default: undefined ,
30
31
required: false ,
31
32
},
32
- plural: Boolean
33
+ plural: Boolean ,
33
34
},
34
35
setup (props ) {
35
36
const href = ` https://coreui.io/vue/docs/${ packageJson .config .coreui_library_short_version } /${ props .href } `
Original file line number Diff line number Diff line change 22
22
</template >
23
23
24
24
<script >
25
- import packageJson from " ../../package.json" ;
25
+ import pkg from ' ../../package.json'
26
26
export default {
27
- name: " DocsExample" ,
27
+ name: ' DocsExample' ,
28
28
props: {
29
29
href: {
30
30
type: String ,
@@ -33,11 +33,11 @@ export default {
33
33
},
34
34
},
35
35
setup (props ) {
36
- const href = ` https://coreui.io/vue/docs/${ packageJson .config .coreui_library_short_version } /${ props .href } ` ;
36
+ const href = ` https://coreui.io/vue/docs/${ pkg .config .coreui_library_short_version } /${ props .href } `
37
37
38
38
return {
39
39
href,
40
- };
40
+ }
41
41
},
42
- };
42
+ }
43
43
</script >
You can’t perform that action at this time.
0 commit comments