提交 a104752c 编写于 作者: W weixin_49112037

Mon Nov 18 14:11:00 CST 2024 inscode

上级 4c602b69
...@@ -5,16 +5,14 @@ import TheWelcome from './components/TheWelcome.vue' ...@@ -5,16 +5,14 @@ import TheWelcome from './components/TheWelcome.vue'
<template> <template>
<header> <header>
<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!" />
</div> </div>
</header> </header>
<main>
<TheWelcome />
</main>
</template> </template>
<style scoped> <style scoped>
......
<script setup> <script setup>
import b from './b.vue' import WelcomeItem from './WelcomeItem.vue'
defineProps({ defineProps({
msg: { msg: {
type: String, type: String,
...@@ -13,13 +13,8 @@ const currentMe = () => { ...@@ -13,13 +13,8 @@ const currentMe = () => {
<template> <template>
<div class="greetings"> <div class="greetings">
<h1 class="green">{{ msg }}</h1> 5555555555555
<h3> <WelcomeItem :methodA="currentMe"></WelcomeItem>
You’ve successfully created a project with
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
</h3>
<b :methodA="currentMe"></b>
</div> </div>
</template> </template>
......
<template> <template>
<div class="item"> <div class="item" @click="getM">
<i> 1121241212
<slot name="icon"></slot>
</i>
<div class="details">
<h3>
<slot name="heading"></slot>
</h3>
<slot></slot>
</div>
</div> </div>
</template> </template>
<script setup>
const props = defineProps({
methodA: Function
});
const getM = () => {
console.log(props.methodA)
}
</script>
<style scoped> <style scoped>
.item { .item {
......
...@@ -12,13 +12,7 @@ const currentMe = () => { ...@@ -12,13 +12,7 @@ const currentMe = () => {
<template> <template>
<div class="greetings"> <div class="greetings">
<h1 class="green">{{ msg }}</h1> bbbbbbbbbbbbbbbbbbbbbb
<h3>
You’ve successfully created a project with
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
</h3>
<b :methodA="currentMe"
</div> </div>
</template> </template>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册