一篇文章带你使用Typescript封装一个Vue组件(简单易懂)
程序员文章站
2022-07-06 17:36:18
一、搭建项目以及初始化配置vue create ts_vue_btn这里使用了vue cli3自定义选择的服务,我选择了ts、stylus等工具。然后创建完项目之后,进入项目。使用快捷命令code ....
一、搭建项目以及初始化配置
vue create ts_vue_btn
这里使用了vue cli3
自定义选择的服务,我选择了ts、stylus
等工具。然后创建完项目之后,进入项目。使用快捷命令code .
进入vs code编辑器(如果没有code .
,需要将编辑器的bin文件目录地址放到环境变量的path
中)。然后,我进入编辑器之后,进入设置工作区,随便设置一个参数,这里比如推荐设置字号,点下。这里是为了生成.vscode
文件夹,里面有个json
文件。
我们在开发项目的时候,项目文件夹内的文件很多,会有时影响视觉。那么这个文件就是设置什么文件隐藏,注意只是隐藏,而不是删除!下面是我自己写的,在vue cli3生成的项目需要隐藏的文件参数。
{ "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/cvs": true, "**/.ds_store": true, "**/readme.md": true, "**/node_modules":true, "**/shims-tsx.d.ts": true, "**/shims-vue.d.ts": true, "**/.browserslistrc": true, ".eslintrc.js": true, "babel.config.js": true, "package-lock.json": true, ".gitignore": true, "tsconfig.json": true } }
以下就是所看到的文件目录,我把一些无关紧要的文件跟文件夹隐藏或者删除后所看到的。
文件解读(从上往下):
文件夹或文件 | 包含子文件夹或文件 | 含义 |
---|---|---|
.vscode | settings.json | 隐藏文件设置 |
public | index.html、favicon.ico | 静态文件存放处 |
src | components文件夹(存放组件)、app.vue、home.vue、main.js | 项目主要文件夹 |
package.json | 无 | 项目依赖参数等 |
二、开发实践
下图为所需要创建的项目文件目录,这里我们开发一个vue按钮组件。
如下图所示,这就是我们要用typescript
开发的组件。
开始编辑:
1、app.vue
<template> <div id="app"> <home></home> </div> </template> <script lang="ts"> import { component, vue } from 'vue-property-decorator';// 编写类样式组件所需要的一些类或者是装饰器 import home from "@/home.vue"; // 引入页面组件 // 这里我们需要使用component装饰器,这个装饰器是注册组件用的,里面的参数是一个对象,内有一个components属性,值为引入的组件名 @component({ components:{ home } }) export default class app extends vue {} </script> <style lang="stylus"> </style>
2、uibtn.vue
<template> <!-- v-on="$listeners" 可以使用,在本类不再监听,在其他地方监听,可以不用$emit(),但是我们这里不用它 --> <button class="ui-btn" @click="onbtnclick('success!')" :class="{ 'ui-btn-xsmall':xsmall, 'ui-btn-small':small, 'ui-btn-large':large, 'ui-btn-xlarge':xlarge }" > <slot>button</slot> </button> </template> <script lang="ts"> import { component, vue, emit, prop } from "vue-property-decorator"; // 编写类样式组件所需要的一些类或者是装饰器 @component export default class uibtn extends vue { @prop(boolean) private xsmall: boolean | undefined; @prop(boolean) private small: boolean | undefined; @prop(boolean) private large: boolean | undefined; @prop(boolean) private xlarge: boolean | undefined; // eslint-disable-next-line @typescript-eslint/no-empty-function @emit("click") private emitclick(x: string) {} private mounted() { console.log(this.large); } private onbtnclick(x: string) { this.emitclick(x); } } </script> <style scoped lang="stylus" > resize(a, b, c) padding a b font-size c .ui-btn resize(12px, 20px, 14px) border 0 solid #000 border-radius 4px outline none font-weight 500; letter-spacing 0.09em background-color #409eff color #fff cursor pointer user-select none &:hover filter brightness(120%) &:active filter brightness(80%) &.ui-btn-xsmall resize(5px, 15px, 14px) &.ui-btn-small resize(8px, 18px, 14px) &.ui-btn-large resize(14px, 22px, 14px) &.ui-btn-xlarge resize(16px, 24px, 14px) </style>
3、home.vue
<template> <div class="home-con"> <div class="btn-group"> <uibtn class="btn" @click="resize('xsmall')">超小</uibtn> <uibtn class="btn" @click="resize('small')">小</uibtn> <uibtn class="btn" @click="resize('normal')">正常</uibtn> <uibtn class="btn" @click="resize('large')">大</uibtn> <uibtn class="btn" @click="resize('xlarge')">超大</uibtn> </div> <div class="btn-con"> <uibtn @click='onclick' :xlarge="xlarge" :large="large" :small="small" :xsmall="xsmall" >主要按钮</uibtn> </div> <div class="btn-pro"> <uibtn large >样式按钮</uibtn> </div> </div> </template> <script lang="ts"> import { component, vue } from 'vue-property-decorator'; // 编写类样式组件所需要的一些类或者是装饰器 import uibtn from '@/components/uibtn.vue'; @component({ components:{ uibtn } }) export default class home extends vue { // eslint-disable-next-line @typescript-eslint/no-inferrable-types private xlarge: boolean = false; // eslint-disable-next-line @typescript-eslint/no-inferrable-types private large: boolean = false; // eslint-disable-next-line @typescript-eslint/no-inferrable-types private xsmall: boolean = false; // eslint-disable-next-line @typescript-eslint/no-inferrable-types private small: boolean = false; private resize (name: string){ console.log(name) switch (name) { case 'xsmall': this.xsmall=true; this.small=false; this.large=false; this.xlarge=false; break; case 'small': this.xsmall=false; this.small=true; this.large=false; this.xlarge=false; break; case 'normal': this.xsmall=false; this.small=false; this.large=false; this.xlarge=false; break; case 'large': this.xsmall=false; this.small=false; this.large=true; this.xlarge=false; break; case 'xlarge': this.xsmall=false; this.small=false; this.large=false; this.xlarge=true; break; } } private onclick(x: string) { console.log(x) } } </script> <style lang="stylus" scoped> .btn-group margin 50px 0 .btn margin 6px .btn-pro margin-top 50px </style>
到此这篇关于一篇文章带你使用typescript封装一个vue组件的文章就介绍到这了,更多相关typescript封装vue组件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!