mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-29 22:14:49 +08:00
15 lines
217 B
Vue
15 lines
217 B
Vue
<template>
|
|
<div>{{msg}}</div>
|
|
<div>{{obj.a}}</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
// eslint-disable-next-line
|
|
const msg = 'hello world';
|
|
|
|
// eslint-disable-next-line
|
|
const obj = {
|
|
a: 1
|
|
};
|
|
</script>
|