Skip to content
  • This project
    • Loading...
  • Sign in

liuzhen@situdata.com / yunxiao-admin-fe

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • yunxiao-admin-fe
  • src
  • components
  • card
  • index.vue
  • zhen's avatar
    init project · 33235b33
    zhen committed 2020-10-14 19:34:16 +0800
    33235b33 Browse Directory
index.vue 327 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template>
  <div class="card-com">
    <div><slot name="title"></slot></div>
    <slot></slot>
  </div>
</template>

<script>
export default {}
</script>

<style lang="scss" scoped>
.card-com {
  padding: 28px 24px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  background-color: #fff;
}
</style>