mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-02-05 14:40:33 +08:00
18 lines
329 B
Vue
18 lines
329 B
Vue
<template>
|
|
<div>{{ input }}</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'nuxt-property-decorator';
|
|
import { Prop } from 'vue-property-decorator';
|
|
|
|
@Component
|
|
export default class Markdown extends Vue {
|
|
// TODO markdown renderer
|
|
@Prop()
|
|
input!: String;
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|