main.vue 284 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <template> <aside class="el-aside" :style="{ width }"> <slot></slot> </aside> </template> <script> export default { name: 'ElAside', componentName: 'ElAside', props: { width: { type: String, default: '300px' } } }; </script>