iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 8
0
Modern Web

用Vue實作一個LINE@聊天機器人後台系列 第 8

[Day08] 製作一對一聊天頁面(二):訊息對話紀錄

  • 分享至 

  • xImage
  •  

Imgur
index.vue

<script>
export default{
   name:"p-message",
   props:{
       type:{
           type:String
       },
       message: {
           type:String
       },
       date: {
           type:String
       }
   } 
}
</script>
<template src="./template.html"></template>
<style lang="scss" src="./style.scss" scoped></style>

style.scss

@import "../../assets/scss/_variables";

.message{
  margin-bottom:30px;
  padding:8px 15px;
  border-radius:10px;
  background:$color-main;
  position:relative;
  line-height: 1.3;
  max-width: 80%;
  display:inline-block;
}

.message:before{
  content:"";
  border-style:solid;
  border-width:5px 10px 5px 0px;
  border-color: transparent $color-main transparent transparent;
  position: absolute;
  left:-10px;
  top:0px;
  bottom:0px;
  height:1px;
  margin:auto;
}

template.html

<div>
    <div class="message">
        <div class="text">{{message}}</div>
    </div>
</div>

上一篇
[Day07] 番外篇: 三個前端開發實用小工具
下一篇
[Day09] 如何申請一個Line官方帳號
系列文
用Vue實作一個LINE@聊天機器人後台30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言