mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-08-21 12:40:01 +08:00
27 lines
290 B
Vue
27 lines
290 B
Vue
<template>
|
|
<div class="page">
|
|
menuTest-index
|
|
</div>
|
|
</template>
|
|
<config>
|
|
{
|
|
"title": "menuTest"
|
|
}
|
|
</config>
|
|
<script>
|
|
export default {
|
|
components: {
|
|
},
|
|
setup() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|