mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-14 19:22:13 +08:00
28 lines
298 B
Vue
28 lines
298 B
Vue
<template>
|
|
<div class="page">
|
|
home
|
|
</div>
|
|
</template>
|
|
<config>
|
|
{
|
|
"name": "index",
|
|
"title": "$home"
|
|
}
|
|
</config>
|
|
<script>
|
|
export default {
|
|
components: {
|
|
},
|
|
setup() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|