mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-05-03 10:32:10 -05:00
14 lines
155 B
Vue
14 lines
155 B
Vue
<template>
|
|
<h1>{{ msg }}</h1>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({ msg: 'hi' })
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
h1 { color: red }
|
|
</style>
|