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
301 B
16 lines
301 B
2 years ago
|
<template>
|
||
|
<h1>这是个人中心消息页面-{{t('sitename')}}</h1>
|
||
|
<el-pagination :page-size="100" layout="total, prev, pager, next" :total="1000"></el-pagination>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import {useI18n} from "vue-i18n";
|
||
|
|
||
|
const {locale ,t} = useI18n();
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|