up
chenyc
2022-09-08 858b6e2184e932adc7acf7465e17e98798b1c833
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<script lang="ts" setup>
    import { ref, onMounted } from 'vue'
 
    defineProps<{ msg: string }>()
 
    const count = ref(0)
    // const c = 1
    onMounted(() => {
        const e: HTMLElement | null = document.getElementById('a')
        console.log(e)
    })
</script>
 
<template>
    <h1 id="a">{{ msg }}</h1>
 
    <p>
        Recommended IDE setup:
        <a href="https://code.visualstudio.com/" target="_blank">VSCode</a>
        +
        <a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
    </p>
 
    <p>See <code>README.md</code> for more information.</p>
 
    <p>
        <a href="https://vitejs.dev/guide/features.html" target="_blank">
            Vite Docs
        </a>
        |
        <a href="https://v3.vuejs.org/" target="_blank">Vue 3 Docs</a>
    </p>
 
    <button type="button" @click="count++">count is: {{ count }}</button>
    <p>
        Edit
        <code>components/HelloWorld.vue</code> to test hot module replacement.
    </p>
</template>
 
<style scoped>
a {
    color: #42b983;
}
 
label {
    margin: 0 0.5em;
    font-weight: bold;
}
 
code {
    background-color: #eee;
    padding: 2px 4px;
    border-radius: 4px;
    color: #304455;
}
</style>