12 lines
118 B
Vue
12 lines
118 B
Vue
|
<template>
|
||
|
<h1>hello vue-live!</h1>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
}
|
||
|
}
|
||
|
</script>
|