ThinkAdmin/other/test.html.vue
2021-11-24 14:08:33 +08:00

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>