1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <script setup lang="ts" name="App"> //name是给组件起一个名字,方便调试 import person from "./components/person.vue"; import { ref } from "vue";
let title = ref(); function shouLog() { console.log(title.value); } </script>
<template> <div class="app"> <h1 ref="title">你好</h1> <button @click="shouLog">打印</button> </div> <person /> </template>
<style scoped> .app { background: #ccc; padding: 20px 100px; box-shadow: 0 0 10px skyblue; border-radius: 10px; /* margin: auto; */ } </style>
|