mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-09-22 14:49:57 +08:00
22 lines
294 B
Vue
22 lines
294 B
Vue
<template>
|
|
<div>{{fes}}</div>
|
|
</template>
|
|
<config>
|
|
{
|
|
"title": "onepiece",
|
|
"layout": "true"
|
|
}
|
|
</config>
|
|
<script>
|
|
import { ref } from 'vue';
|
|
|
|
export default {
|
|
setup() {
|
|
const fes = ref('fes upgrade to vue3');
|
|
return {
|
|
fes
|
|
};
|
|
}
|
|
};
|
|
</script>
|