File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 25
25
</template >
26
26
27
27
<script >
28
- import componentdoc from ' ~/components/componentdoc.vue'
29
- import importdoc from ' ~/components/importdoc.vue'
30
28
import AnchoredHeading from ' ~/components/anchored-heading'
29
+ import Componentdoc from ' ~/components/componentdoc'
30
+ import Importdoc from ' ~/components/importdoc'
31
31
import { components as _meta } from ' ~/content'
32
32
import docsMixin from ' ~/plugins/docs-mixin'
33
33
import startCase from ' lodash/startCase'
@@ -36,7 +36,11 @@ const getReadMe = name =>
36
36
import (' ~/../src/components/' + name + ' /README.md' /* webpackChunkName: "docs/components" */ )
37
37
38
38
export default {
39
- components: { componentdoc, importdoc, AnchoredHeading },
39
+ components: {
40
+ Componentdoc,
41
+ Importdoc,
42
+ AnchoredHeading
43
+ },
40
44
mixins: [docsMixin],
41
45
layout: ' docs' ,
42
46
async asyncData ({ params }) {
Original file line number Diff line number Diff line change 11
11
</template >
12
12
13
13
<script >
14
- import importdoc from ' ~/components/importdoc.vue'
15
14
import AnchoredHeading from ' ~/components/anchored-heading'
15
+ import Importdoc from ' ~/components/importdoc.vue'
16
16
import { directives as _meta } from ' ~/content'
17
17
import docsMixin from ' ~/plugins/docs-mixin'
18
18
import startCase from ' lodash/startCase'
@@ -21,7 +21,10 @@ const getReadMe = name =>
21
21
import (' ~/../src/directives/' + name + ' /README.md' /* webpackChunkName: "docs/directives" */ )
22
22
23
23
export default {
24
- components: { importdoc, AnchoredHeading },
24
+ components: {
25
+ AnchoredHeading,
26
+ Importdoc
27
+ },
25
28
mixins: [docsMixin],
26
29
computed: {
27
30
metaTitle () {
You can’t perform that action at this time.
0 commit comments