• Comment 评论
    • Variables

    Comment 评论

    常规的评论组件

    TIP

    1.0.11+

    Comment 评论 - 图1

    1. <avue-comment :option="option" :data="data">
    2. <i class="el-icon-delete" @click="$message('自定义菜单')"></i>
    3. </avue-comment>
    4. <avue-comment :option="option" :data="data" reverse>
    5. <i class="el-icon-delete" @click="$message('自定义菜单')"></i>
    6. </avue-comment>
    7. <script>
    8. export default {
    9. data() {
    10. return {
    11. data: {
    12. avatar: 'http://s.amazeui.org/media/i/demos/bw-2014-06-19.jpg?imageView/1/w/96/h/96',
    13. author: '某人',
    14. body: `<p>那,那是一封写给南部母亲的信。我茫然站在骑楼下,我又看到永远的樱子走到街心。其实雨下得并不大,却是一生一世中最大的一场雨。而那封信是这样写的,年轻的樱子知不知道呢?</p>
    15. <blockquote>妈:我打算在下个月和樱子结婚。</blockquote>`
    16. },
    17. option: {
    18. props: {
    19. avatar: 'avatar',
    20. author: 'author',
    21. body: 'body'
    22. }
    23. }
    24. }
    25. }
    26. }
    27. </script>

    Variables

    参数说明类型可选值默认值
    reverse是否反转Booleantrue / falsefalse