mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
33 lines
385 B
Vue
33 lines
385 B
Vue
<template>
|
|
<div class="page">
|
|
home
|
|
<FButton class="m-2">Button</FButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { FButton } from '@fesjs/fes-design';
|
|
|
|
export default {
|
|
components: {
|
|
FButton
|
|
},
|
|
setup() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
}
|
|
</style>
|
|
|
|
<config>
|
|
{
|
|
"name": "index",
|
|
"title": "$home"
|
|
}
|
|
</config>
|