提交 c2654d19 编写于 作者: Q qq_63480508

Thu Mar 13 10:31:00 CST 2025 inscode

上级 aa50c4cb
<script setup> <script setup>
import HelloWorld from './components/HelloWorld.vue' import HelloWorld from './components/HelloWorld.vue'
import TheWelcome from './components/TheWelcome.vue' // import TheWelcome from './components/TheWelcome.vue'
</script> </script>
<template> <template>
<header> <header>
<img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" /> <!-- <img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" /> -->
<div class="wrapper"> <div class="wrapper">
<HelloWorld msg="You did it!" /> <HelloWorld msg="You did it!" />
......
<script setup> <template>
defineProps({ <div>
msg: { <table>
type: String, <thead>
required: true <tr>
} <th>ID</th>
}) <th>Name</th>
</script> <th>Qinfeins</th>
<th>Lonifnei</th>
<template> </tr>
<div class="greetings"> </thead>
<h1 class="green">{{ msg }}</h1> <tbody>
<h3> <tr v-for="item in items" :key="item.id">
You’ve successfully created a project with <td>{{item.id}}</td>
<a target="_blank" href="https://vitejs.dev/">Vite</a> + <td>{{item.name}}</td>
<a target="_blank" href="https://vuejs.org/">Vue 3</a>. <td>{{item.quantity}}</td>
</h3> <td>{{item.location}}</td>
</div> </tr>
</template> </tbody>
</table>
<style scoped> </div>
h1 { </template>
font-weight: 500;
font-size: 2.6rem; <script>
top: -10px; import { ref, onMounted } from 'vue';
}
h3 { export default {
font-size: 1.2rem; setup() {
} const items = ref([]);
.greetings h1, onMounted(() => {
.greetings h3 { items.value = inventoryItems;
text-align: center; });
}
return {
@media (min-width: 1024px) { items,
.greetings h1, data
.greetings h3 { };
text-align: left; },
} };
} </script>
</style>
<style scoped>
</style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册