vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > vue使用TDesign

vue项目中使用TDesign的方法

投稿:mrr

tdesign-vue是TDesign 适配桌面端的组件库,适合在 vue 2 技术栈项目中使用,这篇文章主要介绍了vue项目中使用TDesign ,需要的朋友可以参考下

前言:

本文只介绍如何在vue项目中配置TDesign,不涉及vue项目的创建

tdesign-vue是TDesign 适配桌面端的组件库,适合在 vue 2 技术栈项目中使用。当前只适配vue2.6.X如果版本高于vue2.7将报错,因为vue2.6与vue2.7不兼容。

流程:

一、使用vue-cli手脚架创建vue项目

vue create myvueappname

二、配置vue及vue模板编译器版本

npm install vue@2.6.14
npm install vue-template-compiler@2.6.14 --save-dev

三、安装tdesign-vue和less

npm i tdesign-vue

如果安装失败,说明vue版本不匹配,需要更换vue版本。更换版本后可能导致之前的某些库无法兼容,所以更换vue前记得备份。

对于不是新创建的vue项目(现有项目)有时候会出现package.json文件中vue版本是2.6但实际版本是2.7的情况,可以通过查看node_modules\vue\package.json的version确定实际安装的版本。

npm install less-loader

四、测试

import Vue from 'vue';
import TDesign from 'tdesign-vue';
import 'tdesign-vue/es/style/index.css';// 引入组件库的少量全局样式变量

Vue.use(TDesign);

完整main.js代码(仅作参考,需按自己的情况修改)

测试组件:顶部导航栏,使用TDesign官网给出的源码示例

App.js完整代码-仅作参考

npm run serve

常见错误

 Vue packages version mismatch:

        - vue@2.6.14 (D:\VUE_projects\rg813pc\node_modules\vue\dist\vue.runtime.common.js)
        - vue-template-compiler@2.7.14 (D:\VUE_projects\rg813pc\node_modules\vue-template-compiler\package.json)

        This may cause things to work incorrectly. Make sure to use the same version for both.
        If you are using vue-loader@>=10.0, simply update vue-template-compiler.
        If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
[vue warn]: inject() can only be used inside setup()
Component name “xxx“ should always be multi-word vue/multi-word-component-names
Module not found: Error: Can't resolve 'less-loader' in xxx

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

您可能感兴趣的文章:
阅读全文