22 lines
215 B
Vue
22 lines
215 B
Vue
<template>
|
|
<div id="app">
|
|
<div>
|
|
你好,前端
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
name: 'App',
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
</style>
|