39 lines
666 B
Vue
39 lines
666 B
Vue
|
<script>
|
||
|
import Prompt from '../prompt.vue';
|
||
|
import Markdown from '../markdown.vue';
|
||
|
|
||
|
export default {
|
||
|
name: 'MarkdownOutput',
|
||
|
components: {
|
||
|
Prompt,
|
||
|
Markdown,
|
||
|
},
|
||
|
props: {
|
||
|
count: {
|
||
|
type: Number,
|
||
|
required: true,
|
||
|
},
|
||
|
rawCode: {
|
||
|
type: Array,
|
||
|
required: true,
|
||
|
},
|
||
|
index: {
|
||
|
type: Number,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
computed: {
|
||
|
markdownContent() {
|
||
|
return { source: this.rawCode };
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="output">
|
||
|
<prompt type="Out" :count="count" :show-output="index === 0" />
|
||
|
<markdown :cell="markdownContent" :hide-prompt="true" />
|
||
|
</div>
|
||
|
</template>
|