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="m-10px">{{ fes }}</div>
|
|
<img :src="publicPath + 'logo.png'" />
|
|
</template>
|
|
<config>
|
|
{
|
|
"title": "onepiece",
|
|
"layout": true
|
|
}
|
|
</config>
|
|
<script>
|
|
import { ref } from 'vue';
|
|
|
|
export default {
|
|
setup() {
|
|
const fes = ref('fes upgrade to vue3');
|
|
return {
|
|
publicPath: process.env.BASE_URL,
|
|
fes,
|
|
};
|
|
},
|
|
};
|
|
</script>
|