>首页> IT >

世界短讯!聊聊vue3中的name属性,看看怎么使用!

时间:2022-09-14 20:01:31       来源:转载
如果你在 vue3 开发中使用了 <script setup>语法的话,对于组件的 name 属性,需要做一番额外的处理。下面本篇文章就来和大家聊聊vue3 name 属性的使用技巧,希望对大家有所帮助!

对于 vue@3.2.34及以上版本,在使用 <script setup>的单文件组件时,vue 会根据组件文件名,自动推导出 name 属性。也就是名为 MyComponent.vue 或 my-component.vue 的文件, name 属性为 MyComponent,而当你在组件内显示定义 name 属性时,会覆盖推导出的名称。【相关推荐:vuejs视频教程】


(资料图片仅供参考)

除此之外,如果我们要在 <script setup>显示定义 name 属性,需要额外添加一个 script,也就是:

<script>  export default {    name: "MyComponent"  }</script><script setup>...<script>

稍显繁琐,对此社区推出了 unplugin-vue-define-options来简化该操作。

使用步骤非常简单:

1、安装

npm i unplugin-vue-define-options -D

2、配置 vite

// vite.config.tsimport DefineOptions from "unplugin-vue-define-options/vite"import Vue from "@vitejs/plugin-vue"export default defineConfig({  plugins: [Vue(), DefineOptions()],})

3、使用 typescript 开发的话,需要配置 typescript 支持

// tsconfig.json{  "compilerOptions": {    // ...    "types": ["unplugin-vue-define-options/macros-global" /* ... */]  }}

安装配置完成后,就能使用其提供的 defineOptionsAPI 来定义 name 属性。

<script setup>defineOptions({  name: "MyComponent"  })<script>

那么它是如何做到这一点的呢?

对于使用了 defineOptions的代码:

<script setup>import { useSlots } from "vue"  defineOptions({  name: "Foo",  inheritAttrs: false,})const slots = useSlots()</script>

编译后输出为:

<script>export default {  name: "Foo",  inheritAttrs: false,  props: {    msg: { type: String, default: "bar" },  },  emits: ["change", "update"],}</script><script setup>const slots = useSlots()</script>

可以发现,这和我们在上文中书写 2 个 script 标签是一样的,也就是说,unplugin-vue-define-options通过 vite 插件的方式,在编译阶段帮我们做了编写 2 个 script 这一步,简化了我们的开发。

(学习视频分享:web前端开发、编程基础视频)

以上就是聊聊vue3中的name属性,看看怎么使用!的详细内容,更多请关注php中文网其它相关文章!

关键词: 相关文章 就能使用 需要额外