26 lines
401 B
Vue
26 lines
401 B
Vue
<script setup lang="ts">
|
|
import {type Persons} from '@/components/types'
|
|
import Test from '@/components/test.vue'
|
|
// const person:Person = {
|
|
// id: 'aaa',
|
|
// name: '张',
|
|
// age: 19
|
|
// }
|
|
|
|
const personList: Persons = [{
|
|
id: 'aaa',
|
|
name: 'bbb',
|
|
age: 19
|
|
}]
|
|
|
|
console.log(personList);
|
|
</script>
|
|
|
|
<template>
|
|
<Test/>
|
|
<section id="center">
|
|
<h1>第一次构建</h1>
|
|
</section>
|
|
|
|
</template>
|