上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 27 下一页
摘要: 1.开启SqlServer通讯配置 开启Sql Server 通讯配置 sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'Ole Automation Procedures', 1; GO RECONF 阅读全文
posted @ 2021-10-18 16:02 蜗牛的礼物 阅读(1116) 评论(0) 推荐(0) 编辑
摘要: 1.访问接口 我们需要访问接口【http://localhost:28775/api/User/LoginUser】 2.修改 1)修改env.development的【VUE_APP_BASE_API】 2)在vue.config的devServer新增proxy,并且注释掉before prox 阅读全文
posted @ 2021-09-18 10:58 蜗牛的礼物 阅读(2073) 评论(0) 推荐(0) 编辑
摘要: 1.目录结构 2.上代码 1)appsettings.json { "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Informat 阅读全文
posted @ 2021-09-08 11:07 蜗牛的礼物 阅读(229) 评论(0) 推荐(1) 编辑
摘要: 场景:使用日历发现只有英文,想改成中文的日历 1.参照官网 https://element-plus.gitee.io/#/zh-CN/component/i18n 进行全局化配置失败 2.使用 【ConfigProvider】进行配置,后面发现仅仅用来当前页面对单个控件有效,如果放到App.vue 阅读全文
posted @ 2021-08-25 14:38 蜗牛的礼物 阅读(1887) 评论(0) 推荐(0) 编辑
摘要: 前景提要:我在使用import echars from ‘echarts’ 出现 echarts is not defined 1.在cmd打开项目目录,执行 cnpm install echarts -S 安装完毕后,你会在package.json钟看到安装的echarts版本号,如下图所示 2. 阅读全文
posted @ 2021-08-25 11:10 蜗牛的礼物 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 参考官网:https://vant-contrib.gitee.io/vant/#/zh-CN/quickstart 1.安装vant # Vue 3 项目,安装 Vant 3: cnpm i vant@next -S # 安装插件 cnpm i babel-plugin-import -D 注:这 阅读全文
posted @ 2021-07-28 09:39 蜗牛的礼物 阅读(421) 评论(0) 推荐(0) 编辑
摘要: vuex,感觉就像是类似于内存(项目的全局变量)一样的东西,可以直接全局给其他地方的组件使用 1.安装(打开项目,cmd执行) vue add vuex 2.目录结构(发现直接都已经有了store,主要是store里的index.js、main.js-这个已经默认安装好了、demo.vue页) de 阅读全文
posted @ 2021-07-26 22:13 蜗牛的礼物 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1.事前工作 1)提前安装GitHub下载工具(这里建议在项目文件夹中使用cmd操作-因为git的窗口没法上下选择操作) 2)打开vue-cli官网https://cli.vuejs.org/zh/guide/installation.html 3)使用配置淘宝的国内路径(可以查看https://w 阅读全文
posted @ 2021-07-22 11:28 蜗牛的礼物 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1.安装NodeJS 1)下载安装(注:安装到D:\nodejs) 2)调整目录-全局模块和缓存模块文件(打开cmd执行,记得事先给nodejs的安装目录权限创建node_global和node_cache文件夹) npm config set prefix "d:\nodejs\node_glob 阅读全文
posted @ 2021-07-21 11:53 蜗牛的礼物 阅读(59) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <meta charset="utf-8" /> <title>VueTest</title> <script src="./vue.js"></script> </head> <body> <div id='box'> {{a | dzw}} </div> <scrip 阅读全文
posted @ 2021-07-20 16:07 蜗牛的礼物 阅读(41) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 27 下一页