- 博客(8)
- 资源 (2)
- 收藏
- 关注
原创 vue3+eslint遇到 The template root requires exactly one element.eslintvue/no-multiple-template-root解决方案
vue3+eslint遇到 The template root requires exactly one element.eslintvue/no-multiple-template-root 解决方案找到eslint配置文件,我这里是 .eslintrc.js把 extends 中的 ‘plugin:vue/essential’,改成’plugin:vue/vue3-essential’搞定网上文章说是vetur的问题,但我这里不是贴一下我的eslint配置module.exports
2021-05-07 14:34:36
2339
原创 工作中遇到的问题及解决方案(私)
一 oracle数据库: 1.新建表空间:create tablespace demo datafile 'D:\demo.dbf' size 1000m2.新建用户:图形界面就行 授权:grant connect,resource to demo; grant create any sequence to demo; grant create any table to demo
2016-08-02 11:11:06
869
原创 电脑装多系统,启动出现grub rescue,“normal.mod not found”解决办法(windows,ubuntu)
先阐述下我遇见的问题的情况,电脑已经装好了ubuntu,后来装了win10,结果ubuntu进不去了,提示rt。1.在命令提示行下输入 ls 会出现(hd0) (hd0,msdos11) (hd0,msdos10) (hd0,msdos9) (hd0,msdos8) (hd0,msdos7) (hd0,msdos6) (hd0,msdos5) (hd0,msdos1) 这些都是代表每个分区
2015-09-29 20:50:43
3099
1
转载 SQLite3 数据类型
转自 http://blog.chinaunix.net/uid-25523295-id-3082716.html 初始资源 来自sqlie的官网(http://www.sqlite.org/datatype3.html)大部分SQL数据库引擎使用静态数据类型,数据的类型取决于它的存储单元(即所在的列)的类型。 SQLite3采用了动态的数据类型,存储值的数据类型和数值本身相关,而不是由它的字
2015-04-01 20:40:24
1568
1
原创 windows下基于Visual Studio配置&使用sqlite3
Visual Studio 下配置sqlite3Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.报错解决
2015-04-01 18:09:22
1232
原创 Java编程实用代码(随时补充)
一.text中判断只输入数字text.addVerifyListener(new VerifyListener(){ public void verifyText(VerifyEvent e){ e.doit = "0123456789".indexOf(e.text) >= 0; }});
2015-03-28 17:38:30
498
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人