directory adjust: delete entry index.js

This commit is contained in:
陈嘉涵
2017-08-22 17:52:16 +08:00
parent 707b48aa61
commit c494292e3f
88 changed files with 587 additions and 713 deletions
+28
View File
@@ -0,0 +1,28 @@
<template>
<div class="van-panel">
<div class="van-panel__header">
<slot name="header">
<h4 class="van-panel__title" v-text="title"></h4>
<span class="van-panel__desc" v-if="desc" v-text="desc"></span>
<span class="van-panel__status" v-if="status" v-text="status"></span>
</slot>
</div>
<div class="van-panel__content">
<slot></slot>
</div>
<div class="van-panel__footer" v-if="this.$slots.footer">
<slot name="footer"></slot>
</div>
</div>
</template>
<script>
export default {
name: 'van-panel',
props: {
title: String,
desc: String,
status: String
}
};
</script>