/* App.vue */
<Container :데이터들="데이터들" :step="step" :이미지="이미지" @write="작성한글 = $event"></Container>
<button @click="more" v-if="step == 0">더보기</button>
</template>
<script>
export default {
name: 'App',
components: {
Container,
},
data(){
return {
이미지 : '',
작성한글 : '',
}
},
methods : {
publish(){
var 내게시물 = {
name: "Kim Hyun",
userImage: "https://picsum.photos/100?random=1",
postImage: this.이미지,
likes: 36,
date: "May 15",
liked: false,
content: this.작성한글,
filter: "perpetua"
};
this.게시물.unshift(내게시물);
this.step = 0;
},
},