mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
19 lines
220 B
Vue
19 lines
220 B
Vue
<template>
|
|
<div>
|
|
{{ userName }}: 你好 vue3
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "index",
|
|
data() {
|
|
return {
|
|
userName: "张三"
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {}
|
|
}
|
|
</script> |