mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-08-23 22:19:59 +08:00
24 lines
398 B
Vue
24 lines
398 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>
|