mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
21 lines
263 B
Vue
21 lines
263 B
Vue
<template>
|
|
<div>
|
|
<el-icon :size="16">
|
|
<edit></edit>
|
|
</el-icon>
|
|
{{ userName }}: 你好 vue3
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
userName: "张三"
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {}
|
|
}
|
|
</script> |