当前位置: 首页 > article >正文

完整的 Vue 2 + TypeScript + Vuex 的项目案例

下面是一个完整的 Vue 2 + TypeScript + Vuex 的项目案例。这个示例包括了基本的项目结构、Vuex 模块、组件和路由配置。
项目结构
src/
├── assets/
├── components/
│   └── Counter.vue
├── router/
│   └── index.ts
├── store/
│   ├── index.ts
│   └── modules/
│       └── counter.ts
├── App.vue
└── main.ts
1. 安装依赖
首先确保安装了必要的依赖:

npm install vue vuex vue-router @types/node typescript ts-loader


2. 配置 tsconfig.json
在项目根目录下创建 tsconfig.json 文件

{
  "compilerOptions": {
    "target": "es5",
    "module": "esnext",
    "strict": true,
    "jsx": "preserve",
    "importHelpers": true,
    "moduleResolution": "node",
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    },
    "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  },
  "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
  "exclude": ["node_modules"]
}


3. 配置 main.ts
在 src/main.ts 中配置 Vue 应用:

import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';

Vue.config.productionTip = false;

new Vue({
  router,
  store,
  render: h => h(App),
}).$mount('#app');


4. 配置 Vuex 存储
在 src/store/index.ts 中配置 Vuex 存储:

import Vue from 'vue';
import Vuex from 'vuex';
import counter from './modules/counter';

Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    counter,
  },
});


在 src/store/modules/counter.ts 中定义 counter 模块:

import { Module, ActionContext } from 'vuex';

interface State {
  count: number;
}

const counter: Module<State, any> = {
  state: (): State => ({
    count: 0,
  }),
  mutations: {
    increment(state: State) {
      state.count++;
      console.log('increment:', state.count);
    },
  },
  getters: {
    doubleCount: (state: State) => state.count * 2,
  },
  actions: {
    asyncIncrement({ commit }: ActionContext<State, any>) {
      setTimeout(() => {
        commit('increment');
      }, 1000);
    },
  },
};

export default counter;


5. 配置路由
在 src/router/index.ts 中配置路由:

import Vue from 'vue';
import VueRouter from 'vue-router';
import Counter from '../components/Counter.vue';

Vue.use(VueRouter);

const routes = [
  {
    path: '/',
    name: 'Counter',
    component: Counter,
  },
];

const router = new VueRouter({
  mode: 'history',
  base: process.env.BASE_URL,
  routes,
});

export default router;


6. 创建组件
在 src/components/Counter.vue 中创建 Counter 组件:

<template>
  <div>
    <h1>Counter</h1>
    <p>Count: {{ count }}</p>
    <p>Double Count: {{ doubleCount }}</p>
    <button @click="increment">Increment</button>
    <button @click="asyncIncrement">Async Increment</button>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { mapState, mapGetters, mapActions } from 'vuex';

@Component({
  computed: {
    ...mapState(['count']),
    ...mapGetters(['doubleCount']),
  },
  methods: {
    ...mapActions(['increment', 'asyncIncrement']),
  },
})
export default class Counter extends Vue {}
</script>

<style scoped>
button {
  margin: 5px;
}
</style>


7. 创建 App.vue
在 src/App.vue 中创建主应用组件:

<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';

@Component
export default class App extends Vue {}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>


8. 运行项目
最后,运行项目:

npm run serve


这个示例展示了如何在 Vue 2 项目中使用 TypeScript 和 Vuex。你可以根据需要扩展和修改这个基础结构。


http://www.kler.cn/a/377068.html

相关文章:

  • 深度评测uni-app x:开启跨平台开发新篇章
  • 防止密码爆破debian系统
  • kafka使用以及基于zookeeper集群搭建集群环境
  • 机器人手眼标定
  • nodejs实现https://localhost在window系统自签名99年+授信
  • 学习threejs,导入AWD格式的模型
  • jEasyUI 树形菜单添加节点
  • Docker — 跨平台和环境部署
  • 论文翻译 | PROMPTAGATOR : FEW-SHOT DENSE RETRIEVAL FROM 8 EXAMPLES
  • 线上演示服务环境的搭建
  • 使用Node.js内置的http模块创建简单的HTTP服务器,并根据请求的路径返回不同的文本响应。
  • 数据库连接池实现
  • C++(友元、异常机制、静态成员、单例模式)
  • 【MySQL】InnoDB存储引擎内存结构Ⅱ
  • Linux curl命令下载显示时间/速度/大小
  • LLC Power Switches and Resonant Tank 笔记
  • 【算法-选择排序】挑挑拣拣,排出顺序——选择排序入门
  • 大学城水电资源管理:Spring Boot解决方案
  • 使用Python高效处理CSV和Excel文件的多种方法
  • 基于Spring Boot的信息学科平台系统开发与优化
  • LeetCode 每日一题 2024/10/28-2024/11/3
  • 用Fiddler如何对Jmeter的请求进行抓包
  • python的json库的基本应用
  • 富格林:可信措施提升追损效率
  • 光学基础知识(2)体全息光存储技术
  • 终于弄懂了Python中列表的定义