• This project
    • Loading...
  • Sign in

fe / yohoblk-wap · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohoblk-wap
  • public
  • vue
  • product
  • detail
  • show-box.vue
  • 商品详情
    ae50baf9
    by Aiden Xu
    2016-07-22 14:51:07 +0800  
    Browse Files
show-box.vue 367 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<template>
    <div class="show-box" :class="{ 'first-box': isFirst, 'last-box': isLast }">
        <slot></slot>
    </div>
</template>
<style src="./css/show-box.css"></style>
<script>
    module.exports = {
        props: {
            isFirst: [Boolean],
            isLast: [Boolean]
        },
        data() {
            return {};
        }
    };
</script>