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

vue-cli3+typescript初体验小结

程序员文章站 2023-11-18 22:37:22
前言 气势汹涌,ts似乎已经在来的路上,随时可能敲门。 2015年,三大前端框架开始火爆的时候,我还在抱着backbone不放,一直觉得可以轻易转到其他框架去。后来...

前言

气势汹涌,ts似乎已经在来的路上,随时可能敲门。

2015年,三大前端框架开始火爆的时候,我还在抱着backbone不放,一直觉得可以轻易转到其他框架去。后来换工作,现实把脸都打肿了,没做过vue、react、angular?不要!

今天,不能犯这个错了,毕竟时不我与,都快奔三了。

vue-cli3

的详细功能推荐官方文档,不在本文介绍范围内。

安装:

npm install -g @vue/cli

检查安装成功与否:

vue --version

创建项目:

vue create myapp

可以选择manually select feature来*选择功能,常用的有vuex、vue-router、css pre-processors等,我们再把typescript勾上,就可以回车进入下一步了。ps:勾选的操作是按空格键。
创建成功之后,执行启动命令:

npm run serve

就可以通过http://localhost:8080/访问本地项目啦。

typescript

如果没有typescript基础,可以先补补课,大概花三十分钟就可以了解typescript的一些特性,比如:typescript 入门教程。
ts最主要的一点就是类型定义,有个概念才好看得懂demo。

vue-property-decorator

这是一个涵盖了vue的一些对象的集合,我们可以从这里取一些东西出来:

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

取出来的这几个属性,分别是 组件定义component,父组件传递过来的参数prop,原始vue对象vue,数据监听对象watch。还包括这里没有列举出来的modelemitinjectprovide,可以自己尝试下。

demo

<template>
 <div class="hello">
  <h1>{{ msg }}--{{ names }}</h1>
  <input type="text" v-model="txt">
  <p>{{ gettxt }}</p>
  <button @click="add">add</button>
  <p>{{ sum }}</p>
 </div>
</template>

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

@component
export default class helloworld extends vue {
 //props
 @prop() private msg!: string
 @prop() private names!: string
 //data
 private txt: string = '1'
 private sum: number = 0
 //computed
 get gettxt(){
  return this.txt
 }
 //methods
 private add(){
  this.sum++
  console.log(`sum : ${this.sum}`)
 }
 //生命周期
 created(){
  console.log('created')
 }
 //watch
 @watch('txt') 
 changetxt(newtxt: string, oldtxt: string){
  console.log(`change txt: ${oldtxt} to ${newtxt}`)
 }
 
}
</script>

<!-- add "scoped" attribute to limit css to this component only -->
<style scoped lang="less">
h3 {
 margin: 40px 0 0;
}
input {
 width: 240px;
 height: 32px;
 line-height: 32px;
}
</style>

以上就是demo,代码组织有点散,没有原来js书写的整齐。

这个demo没有引入组件,如果需要引入组件,应该这样书写:

<template>
 <div class="home">
  <img alt="vue logo" src="../assets/logo.png">
  <helloworld msg="welcome to your vue.js + typescript app" names="aaa" />
  <helloworld2 msg="welcome to your vue.js + typescript app" names="bbb" />
 </div>
</template>

<script lang="ts">
import { component, vue } from 'vue-property-decorator';
import helloworld from '@/components/helloworld.vue'; // @ is an alias to /src
import helloworld2 from '@/components/helloworld2.vue'; // @ is an alias to /src

@component({
 components: {
  helloworld,
  helloworld2,
 },
})
export default class home extends vue {}
</script>

结语

如果vscode编辑器有警告提示,比如:

experimental support for decorators is a feature that is subject to change in a future release. set the 'experimentaldecorators' option to remove this warning.

可以把工作区其他的项目移除,或者把本项目拖动到工作区的首位,或者在把本项目的tsconfig.json复制到工作区首位的项目的根目录下,重启编辑器,有比较大的概率可以解决警告提示。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。