13 lines
246 B
Vue
13 lines
246 B
Vue
<template slot-scope>
|
|
<el-row>
|
|
<el-col :span="8"></el-col>
|
|
<el-col class="copyright" :span="8">Copyright© BrianLing</el-col>
|
|
<el-col :span="8"></el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<style>
|
|
.copyright{
|
|
text-align:center;
|
|
}
|
|
</style> |