mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-29 11:39:17 +08:00
22 lines
239 B
Vue
22 lines
239 B
Vue
<template>
|
|
<div class="page">
|
|
menuTest-a
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
components: {
|
|
},
|
|
setup() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|