21 lines
290 B
Vue
21 lines
290 B
Vue
<template>
|
|
<footer class="el-footer" :style="{ height }">
|
|
<slot></slot>
|
|
</footer>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ElFooter',
|
|
|
|
componentName: 'ElFooter',
|
|
|
|
props: {
|
|
height: {
|
|
type: String,
|
|
default: '60px'
|
|
}
|
|
}
|
|
};
|
|
</script>
|