|
@@ -49,7 +49,7 @@
|
|
.headline.grey--text.text--darken-3 {{title}}
|
|
.headline.grey--text.text--darken-3 {{title}}
|
|
.caption.grey--text.text--darken-1 {{description}}
|
|
.caption.grey--text.text--darken-1 {{description}}
|
|
v-divider
|
|
v-divider
|
|
- .contents
|
|
|
|
|
|
+ .contents(ref='container')
|
|
slot(name='contents')
|
|
slot(name='contents')
|
|
|
|
|
|
v-flex(lg3, xl2, fill-height, v-if='$vuetify.breakpoint.lgAndUp')
|
|
v-flex(lg3, xl2, fill-height, v-if='$vuetify.breakpoint.lgAndUp')
|
|
@@ -111,6 +111,7 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { StatusIndicator } from 'vue-status-indicator'
|
|
import { StatusIndicator } from 'vue-status-indicator'
|
|
|
|
+import Prism from '@/libs/prism/prism.js'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
@@ -206,6 +207,9 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ mounted () {
|
|
|
|
+ Prism.highlightAllUnder(this.$refs.container)
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
toggleNavigation () {
|
|
toggleNavigation () {
|
|
this.navOpen = !this.navOpen
|
|
this.navOpen = !this.navOpen
|