mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +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>
|