mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-27 06:35:49 +00:00
29 lines
723 B
Vue
29 lines
723 B
Vue
<template>
|
|
<nuxt-link
|
|
class="notification-panel__notification-link"
|
|
:to="route"
|
|
@click.native="markAsReadAndHandleClick"
|
|
>
|
|
<div class="notification-panel__notification-content-title">
|
|
<i18n path="periodicDataSyncDeactivatedNotification.body" tag="span">
|
|
<template #name>
|
|
<strong>{{ notification.data.table_name }}</strong>
|
|
</template>
|
|
</i18n>
|
|
</div>
|
|
</nuxt-link>
|
|
</template>
|
|
|
|
<script>
|
|
import notificationContent from '@baserow/modules/core/mixins/notificationContent'
|
|
|
|
export default {
|
|
name: 'PeriodicDataSyncDeactivatedNotification',
|
|
mixins: [notificationContent],
|
|
methods: {
|
|
handleClick() {
|
|
this.$emit('close-panel')
|
|
},
|
|
},
|
|
}
|
|
</script>
|