提交 30fdb7c3 编写于 作者: Q qq_63480508

Auto Commit

上级 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>
defineProps({
msg: {
type: String,
required: true
}
})
</script>
<template> <template>
<div class="greetings"> <div class="box2">
<h1 class="green">{{ msg }}</h1> <ul>
<h3> <li v-for="(item,index) in items":key="index" @click="selectItem(index)" :class="{selected:selectedIndex===index}">
You’ve successfully created a project with {{item.id}}
<a target="_blank" href="https://vitejs.dev/">Vite</a> + {{item.text}}
<a target="_blank" href="https://vuejs.org/">Vue 3</a>. {{item.path}}
</h3> {{item.password}}
</li>
</ul>
</div> </div>
</template> </template>
<script>
export default{
name:" Hollowrld",
data(){
return{
items:[
{id:"1",text:'item2',path:"/route" ,password:"123456"},
{id:"2",text:'item2',path:"/route",password:"456789"},
{ id:"3",text:'item2',path:"/route", password:"457812"}
],
selectedIndex:null
};
},
methods:{
selectItem(index){
this.selectedIndex=index;
console.log(`selected item: ${this.items[index]}` );
}
}
}
</script>
<style scoped> <style scoped>
h1 { .box2 {
font-weight: 500; border: 1px solid #ccc;
font-size: 2.6rem; padding: 10px;
top: -10px;
} }
h3 { .box2 ul {
font-size: 1.2rem; list-style-type: none;
padding: 0;
} }
.greetings h1, .box2 li {
.greetings h3 { cursor: pointer;
text-align: center; padding: 5px;
margin-bottom: 5px;
background-color: #f9f9f9;
} }
@media (min-width: 1024px) { .box2 li.selected {
.greetings h1, background-color: #ddd;
.greetings h3 { font-weight: bold;
text-align: left;
}
} }
</style> </style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册