Skip to content

Commit

Permalink
fix: 프론트 코드 빌드실패 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
hwanghe159 committed Sep 25, 2020
1 parent 819f743 commit a66e0b1
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions src/frontend/src/components/card/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
</v-layout>
</v-card-title>
<v-card-text
class="headline text-body-1 pb-0"
style="color:rgb(0,0,0); min-height:10px"
v-html="article.content.replace(/(?:\r\n|\r|\n)/g, '<br />')"
v-linkified
@click="clickCardContent()"
class="headline text-body-1 pb-0"
style="color:rgb(0,0,0); min-height:10px"
v-html="article.content.replace(/(?:\r\n|\r|\n)/g, '<br />')"
v-linkified
@click="clickCardContent()"
>
</v-card-text>

Expand Down Expand Up @@ -76,28 +76,28 @@
</template>

<script>
import CreatedDate from '@/components/CreatedDate';
import EmotionImage from '@/components/card/EmotionImage';
import SubEmotionChips from '@/components/card/SubEmotionChips';
import ReportButton from '@/components/ReportButton';
import DetailCardMenu from '@/components/card/DetailCardMenu';
import {REPORT_TYPE} from '@/utils/ReportType.js';
import CreatedDate from '@/components/CreatedDate';
import EmotionImage from '@/components/card/EmotionImage';
import SubEmotionChips from '@/components/card/SubEmotionChips';
import ReportButton from '@/components/ReportButton';
import DetailCardMenu from '@/components/card/DetailCardMenu';
import { REPORT_TYPE } from '@/utils/ReportType.js';
import {mapActions} from 'vuex';
import {LIKE_ARTICLE, UNLIKE_ARTICLE} from '@/store/shared/actionTypes';
import linkify from 'vue-linkify';
import { mapActions } from 'vuex';
import { LIKE_ARTICLE, UNLIKE_ARTICLE } from '@/store/shared/actionTypes';
import linkify from 'vue-linkify';
export default {
name: 'Card',
components: {
CreatedDate,
EmotionImage,
SubEmotionChips,
ReportButton,
DetailCardMenu
},
directives: {
linkified: linkify
export default {
name: 'Card',
components: {
CreatedDate,
EmotionImage,
SubEmotionChips,
ReportButton,
DetailCardMenu
},
directives: {
linkified: linkify
},
methods: {
...mapActions([LIKE_ARTICLE, UNLIKE_ARTICLE]),
Expand Down

0 comments on commit a66e0b1

Please sign in to comment.