mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
22 lines
277 B
Vue
22 lines
277 B
Vue
<template>
|
|
<div class="hello">Hello {{ who }}</div>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data: function () {
|
|
return {
|
|
who: 'xxx'
|
|
}
|
|
},
|
|
created: function () {
|
|
console.log(234123)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.hello {
|
|
background-color: #ffe;
|
|
}
|
|
</style> |