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
-3
View File
@@ -1,3 +0,0 @@
import Radio from './src/radio';
export default Radio;
@@ -25,7 +25,7 @@
</template>
<script>
import findParent from '../../mixins/findParent';
import findParent from '../mixins/findParent';
export default {
name: 'van-radio',
-22
View File
@@ -1,22 +0,0 @@
<template>
<div class="van-radio-group">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'van-radio-group',
props: {
value: {},
disabled: Boolean
},
watch: {
value(value) {
this.$emit('change', value);
}
}
};
</script>