mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
19 lines
260 B
Vue
19 lines
260 B
Vue
<template>
|
|
<div>vite - micro - index</div>
|
|
</template>
|
|
<config>
|
|
{
|
|
"name": "index",
|
|
"title": "home"
|
|
}
|
|
</config>
|
|
<script>
|
|
export default {
|
|
setup() {
|
|
return {
|
|
bigData: new Array(5 * 1024 * 1024),
|
|
};
|
|
},
|
|
};
|
|
</script>
|