fix pug indent issue

This commit is contained in:
lesion
2022-07-01 15:55:09 +02:00
parent baeb141ccd
commit 1ca44cf048
31 changed files with 888 additions and 894 deletions

View File

@@ -1,16 +1,15 @@
<template lang="pug">
v-container
v-card
v-card-title {{announcement.title}}
v-card-text(v-html='announcement.announcement')
v-container
v-card
v-card-title {{announcement.title}}
v-card-text(v-html='announcement.announcement')
</template>
<script>
import { mapState } from 'vuex'
export default {
name: 'Announcement',
asyncData ({ $axios, params, error, store }) {
asyncData ({ params, error, store }) {
try {
const id = Number(params.id)
const announcement = store.state.announcements.find(a => a.id === id)