chatty-pub/front/src/components/Streams/Stream.vue
كارل مبارك 374620645c initial commit
2021-06-26 13:12:56 +02:00

29 lines
414 B
Vue

<template>
<div>
<!-- {{ $md.renderInline(rawJSON) }} -->
<p class="name">
<router-link :to="stream.name">
{{ stream.name }}
</router-link>
</p>
<!-- <p class="desc">{{ stream.description }}</p> -->
</div>
</template>
<script>
export default {
name: 'Stream',
props: [
'stream'
],
computed: {
},
}
</script>
<style scoped>
div p {
margin: 0;
}
</style>