I have a component (prism-editor
) that only takes code from v-model="code"
. This means, the code has to be sent to the component through code
:
Code.vue
<template>
<prism-editor class="my-editor" v-model="code"
:highlight="highlighter" :line-numbers="numbers"/>
</template>
<script>
import { PrismEditor } from 'vue-prism-editor';
export default {
components: {
PrismEditor,
},
data: () => ({
code: this.$slots,
numbers: true
}),
}
</script>
I would like to bind this from a parent component named Code
from a slot:
Page.vue
<template>
<code language="c">
int main() {
printf('Hello World!');
}
</code>
<template>
<script>
import Code from 'code.vue'
export default {
components: {
'code': Code
}
}
</script>
In my Code
component, I have to find a way to get and pass the slot data directly to the code
variable to be sent to the v-model='code'
. Unfortunately the following doesn't work because I don't know how to get the data from the parent slot
:
data: () => ({
code: this.$slots // Which obviously doesn't work...
})
Said differently, I just want to get all the raw content that was sent inside the code
tag:
<code>all this content...</code>`
Is this possible?
.
├── Code.vue
└── Page.vue