mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
24 lines
400 B
Vue
24 lines
400 B
Vue
<template>
|
|
<div class="page bg-black">
|
|
home
|
|
<FButton class="m-2">Button</FButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { defineRouteMeta } from '@fesjs/fes';
|
|
import { FButton } from '@fesjs/fes-design';
|
|
|
|
defineRouteMeta({
|
|
name: 'index',
|
|
title: '$home',
|
|
});
|
|
console.log('123123'.replaceAll('123', '234'));
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
height: 1000px;
|
|
}
|
|
</style>
|