欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在Vue.js中使用TypeScript的方法

程序员文章站 2023-09-04 23:14:24
虽然 vue2.x 对typescript的支持还不是非常完善,但是从今年即将到来的3.0版本在github上的仓库看,为ts提供更好的官方支持应该也会是一个重要特性,那么,在迎接3.0之前,不妨先来...

虽然 vue2.x 对typescript的支持还不是非常完善,但是从今年即将到来的3.0版本在github上的仓库 看,为ts提供更好的官方支持应该也会是一个重要特性,那么,在迎接3.0之前,不妨先来看看目前版本二者的搭配食用方法吧~

创建项目

  • 虽然github上有各种各样相关的starter,但是使用 vue cli 应该是目前相对比较好的方式,在使用 vue create 创建新项目时,对 preset 选择 manually select features 选项,之后添加 typescript
  • 如果想在vue应用中完整使用es6中提供的类特性,那么在 class-style component syntax 处选择y(本文主要介绍选择y的情况)
  • 对于 babel 来说,一般情况选择使用,而 linter / formatter 的具体选择可根据项目需求,此处不多说明

进入项目

创建完成后,看一看 package.json ,可以发现 vue-class-componentvue-property-decorator 以及其他ts相关的modules都已被添加,其中: vue-class-component 可以让你使用class-style语法创建组件,比如以下代码:

<template>
 <div>
 <button @click="decrement">-</button>
 {{ count }}
 <button @click="increment">+</button>
 </div>
</template>

<script lang="ts">
 import vue from 'vue'
 import component from 'vue-class-component'

 // define the component in class-style
 @component
 export default class counter extends vue {
 // class properties will be component data
 count = 0

 // methods will be component methods
 increment() {
  this.count++
 }

 decrement() {
  this.count--
 }
 }
</script>

vue-property-component 则完全依赖于前者,提供了除 @component 外的其他几种装饰器,比如 @prop

import { vue, component, prop } from 'vue-property-decorator'

 @component
 export default class yourcomponent extends vue {
 @prop(number) readonly propa: number | undefined
 @prop({ default: 'default value' }) readonly propb!: string
 @prop([string, boolean]) readonly propc: string | boolean | undefined
}

再来一个二者结合的简单例子吧:

<template>
 <div class="hello">
 <h1>{{ msg }}</h1>
 <h1>{{ fullname }}</h1>
 <button @click="reversestr()">reverse</button>
 </div>
</template>

<script lang="ts">
import { component, prop, vue, watch } from 'vue-property-decorator';

@component
export default class helloworld extends vue {
 @prop() private msg!: string;
 firstname = "rapt";
 lastname = "azure";

 mounted() {
 console.log('mounted');
 }

 // computed property
 get fullname(): string {
 return this.firstname + this.lastname;
 }

 // method
 reversestr() {
 this.firstname = this.firstname.split('').reverse().join('');
 this.lastname = this.lastname.split('').reverse().join('');
 }

}
</script>
  • 此时,你的vue项目已经有fully-typed的可能了,当然也会有更好的自动补全以及错误提示。
  • 为了更好的确定类型,可以创建例如 interfaces 这样的文件夹,充分利用ts的接口和类来使项目有更好的组织结构,可读性和维护性。

另一种选择

其实当然也可以不使用class风格啦,这样的话,就和平时熟悉的vue更为相似了,而对类型当然也是完全支持的。
这里也提供一个简单的例子吧~<template>

<div class="hello">
  <h1>{{ msg }}</h1>
  <h1>{{ test }}</h1>
 </div>
</template>

<script lang="ts">
import vue from 'vue';

export default vue.extend({
 name: 'helloworld',
 props: {
  msg: string,
 },
 data() {
  return {
   test: "hello from ts" as string
  }
 },
 methods: {
  pressme(): string {
   return this.test + 'br'
  }
 }
});
</script>

其他的话

  • 本文只是简要探讨了在vue.js中使用typescript的可能性,更多的相关内容在  里可以找到哦,或者也可以多去github的vue区,ts区逛逛呢~
  • typescript的出现为javascript的生态带来了新活力,不管是前端三大框架vue,react,angular,还是node系的后端框架比如nest和express,都在积极拥抱ts,希望以后整个生态会发展得越来越好吧~

总结

到此这篇关于在vue.js中使用typescript的文章就介绍到这了,更多相关vue.js使用typescript内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!