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.
23 lines
341 B
23 lines
341 B
<template>
|
|
<div>
|
|
<p>公众号尚未完成配置,请联系管理员!</p>
|
|
<Android></Android>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "errorPage"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
p {
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 80vh;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|