search
HomeWeb Front-endJS TutorialIntroduction to the configuration of using Typescript in Vue2 Vue-cli

This article mainly introduces the configuration introduction of using Typescript in Vue2 Vue-cli. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

Vue is the three major front-end One of the frameworks has received 44,873 stars on github so far, which is enough to show that it has quietly become mainstream. The following article mainly introduces you to the relevant information about the configuration of using Typescript in Vue2 Vue-cli. Friends in need can refer to it.

Preface

Because the company's team is keen on the vue framework recently, and I want to practice typescript in the new project, so I started to work on vue ts The road to pitfalls... This article is intended to save time for friends who have the same idea as me. I won’t say much below. Let’s take a look at the configuration required to use Typescript in Vue2 Vue-cli. .

1. Preliminary configuration

First install the official plug-ins vue-class-component, vue-property-decorator, and configure webpack.
The webpack configuration is as follows:

Modify the entry file

entry: {
 app: './src/main.ts'
}

resolve part:

extensions: ['.js', '.vue', '.json', '.ts', '.tsx']

Configure loader

{
 test: /\.tsx?$/,
 loader: 'ts-loader',
 exclude: /node_modules/,
 options: {
  appendTsSuffixTo: [/\.vue$/],
 }
 }

Configure tsconfig.json

{
 "include": [
 "src/**/*"
 ],
 "exclude": [
 "node_modules"
 ],
 "compilerOptions": {
 "allowSyntheticDefaultImports": true,
 "experimentalDecorators": true,
 "allowJs": true,
 "module": "es2015",
 "target": "es5",
 "moduleResolution": "node",
 "experimentalDecorators": true,
 "isolatedModules": true,
 "lib": [
  "dom",
  "es5",
  "es2015.promise"
 ],
 "sourceMap": true,
 "pretty": true
 }
}

2. Actual combat!

# Configuring the configuration is only the first step, running it in the project is the key.

Add lang='ts'

# in the script tag of the vue file because ts-loader does not know it like webpack that has been equipped with loader What are vue, html and other files? When you run it, you will get an error that the module cannot be parsed, so you also need to configure the .d.ts declaration file


The following configuration of vue

declare module "*.vue" {
 import Vue from 'vue';
 export default Vue;
}

You can also configure .d.ts files for other non-js modules such as html (tell ts-loader to understand html as a string)

declare module "*.html" {
 let template: string;
 export default template;
}

After configuration, ts will be able to understand these modules


Introduce the modules that need to be used from vue-property-decorator


(Generally, only Component, Vue, Watch, and Prop are used. The other three are not used or studied. Someone who knows can explain it.)


import { Component, Vue, Watch } from 'vue-property-decorator'

Let’s take the previously written sidbar code as an example:

class HoverTopElem {
 leaveTop: number = -200
 top: number = null
 height: number = null

 show(e) {
 this.top = e.target.getBoundingClientRect().top
 this.height = e.target.clientHeight
 }
 hidden() {
 this.top = this.leaveTop
 }
}

@Component({
 name: 'sidebar',
 template: template,
 components: {
 sidebarItem
 }
})
export default class Sidebar extends Vue {
 SidebarMenu: any = SidebarMenu
 hoverTopElem: HoverTopElem = new HoverTopElem()
 activeListItemName: string = null
 activeRouteItemRoute: string = null

 get _activeRouteItemRoute(): string {
 return this.$route.path
 }

 @Watch('_activeRouteItemRoute', { immediate: true })
 onRouteChanged(val: any) {
 this.activeRouteItemRoute = val
 }

 changeList(param) {
 this.activeListItemName = param
 }

 changeRoute(param) {
 this.activeRouteItemRoute = param
 }
}

Metadata is written in the @Component configuration, such as name, components used, etc. Then let’s talk about how to use each instance attribute method used in vue before:

data: This is the most commonly used, like the SidebarMenu above (a total of 4 are declared here). Note that the variables declared here must be assigned a value. If not, it will be null, not undefined, otherwise the data will not be responsive. Therefore, the properties in the HoverTopElem class must also have initial values, otherwise these properties will not be responsive.

computed: Here is the get function. Note that tsconfig.jsonp is not configured with "target": "es5" and an error will be reported here

prop: There is a Prop module in vue-property-decorator. You can also declare this prop in the metadata, and then declare this variable in the class. I personally recommend the first one

watch: Watch module in vue-property-decorator

methods: Just write the method directly in the class like data (be careful not to have the same name as the cycle hook)


Various life cycles Hook: Just write it directly


See the vue-class-component document for routing hook

At this point, you can basically write the vue component as before.

Of course, if you want to write ts as before, you also need to configure tslint, otherwise some ts syntax will not be recognized, such as public modifiers, etc., because I am not very proficient in ts, so I don’t think about configuring it. Interested friends can try it.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

How to solve the problem of incorrect access path after Vue background image is packaged

Based on casperjs and resemble .js implements a pixel comparison service

Introduction to initializing the stylus installation method for the first time after the vue project is created

The above is the detailed content of Introduction to the configuration of using Typescript in Vue2 Vue-cli. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. JavaScript: Development Environments and ToolsPython vs. JavaScript: Development Environments and ToolsApr 26, 2025 am 12:09 AM

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

Is JavaScript Written in C? Examining the EvidenceIs JavaScript Written in C? Examining the EvidenceApr 25, 2025 am 12:15 AM

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript's Role: Making the Web Interactive and DynamicJavaScript's Role: Making the Web Interactive and DynamicApr 24, 2025 am 12:12 AM

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C   and JavaScript: The Connection ExplainedC and JavaScript: The Connection ExplainedApr 23, 2025 am 12:07 AM

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python vs. JavaScript: Use Cases and Applications ComparedPython vs. JavaScript: Use Cases and Applications ComparedApr 21, 2025 am 12:01 AM

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

The Role of C/C   in JavaScript Interpreters and CompilersThe Role of C/C in JavaScript Interpreters and CompilersApr 20, 2025 am 12:01 AM

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.