app.vue
<template>
<!-- html 结构-->
<div class="app">
<h1>你好啊</h1>
</div>
</template>
<script lang="ts">
//ts
export default{
name:"app"//暴露组件名称
}
</script>
<style>
/* 样式 */
.app{
background-color: #ddd;
box-shadow: 0 0 10px;
border-radius: 10px;
padding: 10px;
}
</style>

浙公网安备 33010602011771号