-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReportComponent.vue
40 lines (37 loc) · 1.02 KB
/
ReportComponent.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<template>
<div></div>
</template>
<script>
/**
* Import any custom scss stylesheets here
*/
// import "./customstyles.scss"
export default {
name: 'ReportComponent',
methods: {
/**
* Rather than using simple import statements as per a typical component, you have to register
* any custom components here. The format is
*
* 'ComponentNameAsUsedInContent': () => import('./components/PathToComponent'),
*
* Note that you don't need ".vue" extension. Also, the key is what you use in your content, so in the example
* above one of the md pages could contain:
* <ComponentNameAsUsedInContent :anycustomprop="1"></ComponentNameAsUsedInContent>
*
* Typically you should store your custom components in ./components
*
*/
getComponentsList() {
return {
/*'ActionOverview': () => import('./components/ActionOverview'),*/
}
}
}
}
</script>
<style lang="scss">
/**
* You can specify global styles here, or use an imported scss file
*/
</style>