You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
310 B
16 lines
310 B
6 years ago
|
<template>
|
||
|
<el-card shadow="never" class="aui-card--fill">
|
||
|
<div class="mod-home">
|
||
|
<h3>{{ $t('home.desc.title') }}</h3>
|
||
|
<ul>
|
||
|
<li v-for="item in $t('home.desc.list')" :key="item" v-html="item"></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</el-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
}
|
||
|
</script>
|