mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-13 16:34:39 +00:00
19 lines
203 B
Vue
19 lines
203 B
Vue
<template>
|
|
<div>
|
|
{{ comment.content }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
comment: {
|
|
type: Object,
|
|
default() {
|
|
return {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|