admin-fe/src/views/moderationLog/ReportLink.vue
2021-03-11 15:21:47 +03:00

21 lines
313 B
Vue

<template>
<router-link
:to="{ name: 'ReportsShow', params: { id }}"
class="router-link">
<span style="font-weight: 600">#{{ id }}</span>
</router-link>
</template>
<script>
export default {
name: 'UserLink',
props: {
id: {
type: String,
required: true
}
}
}
</script>