Created
June 24, 2017 12:31
-
-
Save acacha/6b0a591318a0366d797c05a0fbdae4ba to your computer and use it in GitHub Desktop.
Box template part vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div v-if="removed" class="box" :class="[{'box-solid' : isSolid}, {'collapsed-box' : isCollapsed }, 'box-' + color]"> | |
<div class="box-header" :class="{'with-border' : borderOnHeader}"> | |
<div class="box-title" v-if="!noTitle"> | |
<slot name="title">Put your title here using slot with name title</slot> | |
</div> | |
<div class="box-tools pull-right" v-if="!noTitle"> | |
<slot name="box-tools"> | |
<button v-if="isCollapsable" type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa" :class="collapseIcon"></i></button> | |
<button v-if="isRemovable" type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button> | |
</slot> | |
</div> | |
</div> | |
<div class="box-body"> | |
<slot>Put your content here using default slot</slot> | |
</div> | |
<div class="box-footer" v-if="hasFooterSlot()"> | |
<slot name="footer">This is the footer!</slot> | |
</div> | |
<div class="overlay" v-if="isLoading"> | |
<i class="fa fa-refresh fa-spin"></i> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment