在Vue 3中,可以通过以下步骤从另一个本地项目导入和显示组件:
npm install vue@next
<template>
<button>{{ text }}</button>
</template>
<script>
export default {
props: {
text: {
type: String,
required: true
}
}
}
</script>
<style scoped>
button {
background-color: #42b983;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
</style>
<template>
<div>
<Button text="Click me" />
</div>
</template>
<script>
import Button from '../shared-components/Button.vue';
export default {
components: {
Button
}
}
</script>
这样,你就成功地从另一个本地项目导入和显示了一个组件。请注意,以上步骤假设你的两个项目都是基于Vue 3的,并且已经正确安装了Vue 3的依赖。如果你的项目使用的是Vue 2或其他版本,可能需要进行相应的调整。
领取专属 10元无门槛券
手把手带您无忧上云