mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
27 lines
275 B
Vue
27 lines
275 B
Vue
<template>
|
|
<div class="page">
|
|
home
|
|
</div>
|
|
</template>
|
|
<config>
|
|
{
|
|
"name": "index",
|
|
"title": "$home"
|
|
}
|
|
</config>
|
|
<script>
|
|
export default {
|
|
components: {
|
|
},
|
|
setup() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
}
|
|
</style>
|