22 lines
285 B
Vue
22 lines
285 B
Vue
|
|
<template>
|
|
<p>{{ greeting }} World!</p>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data: function () {
|
|
return {
|
|
greeting: 'Hello'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
//cc:test vue
|
|
<style scoped>
|
|
p {
|
|
font-size: 2em;
|
|
text-align: center;
|
|
}
|
|
</style> |