E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
COMPONENT
vue3.0组件传值
/
component
s/hellowrold.vue';importHelloWorld2from'../
component
s/Hellowrold2.vue';c
miao_zz
·
2024-02-01 14:45
vue3.0
javascript
vue.js
前端
vue---子组件修改父组件的值
//子组件{{value}}exportdefault{props:['value'],data(){return{newValue:''}}}//父组件importChild
Component
from
想你的风吹到了瑞士
·
2024-02-01 14:07
vue.js
javascript
前端
vue----子组件调用父组件的方法
$parent.event来调用父组件的方法父组件importchildfrom'~/
component
s/dam/child';exportdefault{
component
s:{child},methods
想你的风吹到了瑞士
·
2024-02-01 14:01
javascript
前端
vue.js
2021年10月我的观察记录
成功完成custom
component
,并优化和提升了架构~这个月送走了老家爷爷~这个月继续布施、放生、供佛~这个月弹会了2首曲子祝贺渡众生fcy分享了最近的奇迹:她刚想到一个人,这个人就出现了~她爸爸对她们一起去放生印象深刻
感谢我自己
·
2024-02-01 14:36
vue3 报错解决:无法找到模块“xxx.vue”的声明文件 xxx隐式拥有 “any“ 类型
typescript只能理解.ts文件,无法理解.vue文件解决方法:在项目根目录或src文件夹下创建一个后缀为XXX.d.ts的文件,并写入以下内容:declaremodule'*.vue'{import{
Component
Options
影阴
·
2024-02-01 13:28
javascript
前端
vue.js
【Java】IoC五大注解和@Bean注解
1、用于类的五大注解@Controller控制器存储@Service服务存储@
Component
组件存储@Configuration配置存储@Repository仓库存储从功能上看,除了Controller
沙河板混
·
2024-02-01 13:54
Java
#
Java网络编程
java
开发语言
spring
AOP&面向切面编程
入门操作1、导入依赖org.springframework.bootspring-boot-starter-aop2、编写切面类XxxAspect3、在类头上加注解@Aspet@
Component
4、方法头上加注解
开朗觉觉
·
2024-02-01 11:49
java
前端
服务器
spring
less的使用小技巧以及vite 如何配置less全局变量
color:@primaryColor2.变量-选择器添加项目标识(可用于微前端的样式隔离)@nameSpace:'my-app';//在组件中使用@prefix-cls:~'@{nameSpace}-
component
1
原谅我不够洒脱
·
2024-02-01 11:00
笔记
javascript
前端
css3
【Vue】2-13、Vue 动态组件
App根组件importLeftfrom"@/
component
s/Left.vue";exportdefault{data(){return{comName:"Left",};},
component
s
QX_Java_Learner
·
2024-02-01 10:52
Vue
vue.js
javascript
前端
spring中拦截器Interceptor
拦截器的基本使用1.定义拦截器,实现Handlerlnterceptor接口,重写方法(Ctrl加o选择重写的方法)
Component
//注入注解publicclassJwtInterceptorimplementsHandlerInterceptor
effort看看喽
·
2024-02-01 10:27
spring
java
后端
maven
tomcat
spring
boot
react+Pro
Component
s简单实现表格
文章目录使用Pro
Component
s的原因一般后台管理系统,大部分页面功能都是列表和表单的形式。
我年薪百万
·
2024-02-01 09:33
react.js
javascript
前端
vue3使用is动态切换组件报错Vue received a
Component
which was made a reactive object.
vue3使用is动态切换组件,active
Component
用ref定义报错Vuereceiveda
Component
whichwasmadeareactiveobject.Thiscanleadtounnecessaryperformanceoverhead
前端路上迷茫的小鲨鱼
·
2024-02-01 09:29
前端
vue3
umi 4 踩坑
1.route结合layout布局,头部会重复显示umi4layout重复输出html结构#10392别人也遇到了这种情况,下面是正确的代码constroutes=[{path:'/login',
component
·
2024-02-01 09:09
MySQL InnoDB是如何实现ACID的?
TheACIDmodelisasetofdatabasedesignprinciplesthatemphasizeaspectsofreliabilitythatareimportantforbusinessdataandmission-criticalapplications.MySQLincludes
component
ssuchastheInnoDBstorageenginethatadher
wtopps
·
2024-02-01 08:16
数据库
mysql
adb
数据库
通用获取SpringBean的工具,可在Spring无法注入的场景下使用Spring相关Bean
@
Component
publicfinalclassSpringUtilimplementsApplicationContextAware{privatestaticApplicationContextapplicationContext
Planet_2d42
·
2024-02-01 07:06
认识vue项目目录结构
如图所示项目目录build:项目构建webpack(打包器)相关代码config:配置目录,包括端口号等node_modules:项目依赖src:主要代码开发目录>assets静态文件(img、css、js)>
component
s
追风筝的一朵云
·
2024-02-01 07:49
统一日志切面
需求:打印系统的controller的请求日志和返回结果,以及接口耗时,方便后续排查问题;可以使用filter来做,也可以使用切面,倾向于使用切面;代码如下:@Aspect@
Component
publicclassWebLogAspect
xiaoguangtouqiang
·
2024-02-01 07:24
日志
切面
Spring Boot 中操作 Bean 的生命周期
接口提供了afterPropertiesSet方法,用于在bean的属性设置好之后调用;DisposableBean接口提供了destroy方法,用于在bean销毁之后调用;publicclassTest
Component
implementsInitializingBean
xiaoguangtouqiang
·
2024-02-01 07:14
spring
boot
java
后端
CVPR2023:IDEA与清华提出首个一阶段3D全身人体网格重建算法,代码开源!
GitHub-IDEA-Research/OSX:[CVPR2023]Officialimplementationofthepaper"One-Stage3DWhole-BodyMeshRecoverywith
Component
AwareTransformer
AI视觉网奇
·
2024-02-01 07:08
深度学习宝典
深度学习
人工智能
Vue2 悬浮球
importFloatBallfrom"@/
component
s/FloatBall.vue"exportdefault{name:"HomeView",
component
s:{FloatBall},data
钓了猫的鱼儿
·
2024-02-01 06:54
Vue
前端
javascript
html
悬浮球
Vue2 长文本展示和收起
import*asConfigfrom'@/
component
s/data';importLongContentShowfrom"@/
component
s/LongContentShow";exportdefault
钓了猫的鱼儿
·
2024-02-01 06:53
Vue
前端
javascript
vue.js
CocosCreator3.8第三节预制体
@property(Prefab)eggPrefab:Prefab;//预制体import{Prefab,input,Input,KeyCode,Color,_decorator,v3,tween,
Component
前端专业写bug
·
2024-02-01 06:00
cocos2d
Spring面试的几大问题
packagecom.csc.pojo;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.stereotype.
Component
学java的冲鸭
·
2024-02-01 04:47
spring
面试
java
vue实现瀑布流
.5scubic-bezier(.55,0,.1,1);-webkit-transition:all.5scubic-bezier(.55,0,.1,1);}varapp=newVue({el:'#app',
component
s
天使的同类
·
2024-02-01 04:39
瀑布流
vue.js
html
vue.js
前端
Vue 之 父子组件通信与事件触发(最全实用总结)
/Child';exportdefault{
component
s:{Child}}效果展示:通过这张图可以看出父子组件的结构,下面我们来实习父子组件通信。
八了个戒
·
2024-02-01 04:08
应用场景
Vue系列
vue
js
html
vue.js
新星计划
组件复用
一、组件复用需要在配置路由的地方把
component
变成
component
s,然后重新给个新的名字例如‘delivery’:Delivery二、然后需要在Vue.vue的文件里用()j记得使用的时候要先
__不靠谱先生
·
2024-02-01 03:30
style-
component
s如何结合bootstrap样式
styled-
component
s是一个用于React(以及其他框架的变体版本)的CSS-in-JS库,它允许你编写可复用、动态的样式,并直接在组件中定义它们。
小果运维
·
2024-02-01 03:15
前端
bootstrap
前端
html
基于 vue3 element-plus 省市区联动组件
完整代码地址选择的时候就是下面这样的2、主要逻辑代码html相关代码逻辑处理部分import{reactive,onBeforeMount,computed,watch}from'vue'importareaDatafrom'@/
component
s
ZL随心
·
2024-02-01 02:00
element-plus
vue.js
Vue-49、Vue技术实现动画效果
1、首先,在Vue项目中的src/
component
s文件夹下创建一个名为AnimatedBox.vue的文件。
一叶飘零晋
·
2024-02-01 02:29
vue
vue.js
前端
javascript
vue 截图转base64转图片文件file
importhtml2canvasfrom'html2canvas'import*asLfrom'leaflet';import'leaflet/dist/leaflet.css';varmap=null;exportdefault{name:"HomeView",
component
s
汪小敏同学
·
2024-02-01 01:58
vue
在vue中实现打印功能(vue-easy-print使用)
打印插件npmivue-easy-print-s2.在需要打印的页面中导入vue-easy-printimportvueEasyPrintfrom"vue-easy-print";3.在组件中注册使用
component
s
qq_48378883
·
2024-02-01 01:22
vue
vue.js
javascript
前端
使用springaop实现行为日志,并存储到数据库
引入依赖org.springframework.bootspring-boot-starter-aop二.创建对应的实体类blog指定数据库中存储日志的表名三.自定义注解四.创建切面类@Aspect@
Component
publicclassServiceLogAspect
周大仙1
·
2024-02-01 01:07
java实现日志
eureka
java
spring
boot
uniapp日志写入
说明:1.自定义日志存储在txt中2.生成的文件存放在对应app目录下的_doc/logs文件夹中···js//main.js文件进行全局挂载//引入loggerimportloggerfrom'@/
component
s
陈不知代码
·
2024-02-01 01:02
uni-app
Vite+Ts新建项目报错
/XXX.vue”或其相应的类型声明//报错原因:typescript只能理解.ts文件,无法理解.vue文件declaremodule'*.vue'{importtype{Define
Component
斯文~
·
2024-02-01 01:30
Vue
javascript
开发语言
ecmascript
10-内置事件和组件自定义事件
/
component
s/Student.vue'importSchoolfrom'./
component
s/School.vue'expo
荆承鹏
·
2024-02-01 00:34
面试篇-SpringBoot自动配置原理
SpringBootApplication注解源码:@SpringBootApplication注解是一个复合注解,它包含了@SpringBootConfiguration、@EnableAutoConfiguration和@
Component
S
努力的小周同学
·
2024-01-31 21:50
Java后端开发学习
java
开发语言
spring
boot
微服务
分布式
一个接口多个实现,ApplicationContextAware
@
Component
publicclassTestApplicationContextAwareimplementsApplicationContextAware{/***其中key是bean的名称,value
MaGgIeOo0
·
2024-01-31 21:47
java
前端
数据库
vscode配置代码片段超级简单提升工作效率
定义常用的代码片段import{define
Component
,reactive,ref}from"vue";exportdefaultdefine
Component
({name:'App'})先对上面的代码进行转码
胡西风_foxww
·
2024-01-31 20:10
#
编辑器
vscode
vue.js
前端
效率
代码片段
小程序自定义导航
导航组件{{setting}}{{title.title}}mode="widthFix"-->constapp=getApp();
Component
({/***组件的属性列表*/properties:
良诤
·
2024-01-31 20:11
spring boot集成HttpClient连接池
1、在pom.xml中添加httpclient的依赖org.apache.http
component
shttpclient4.5.82、创建resources/config/httpclient.propertieshttpclient.properties
qingdao_java
·
2024-01-31 20:04
spring
boot
httpclient
spring
boot
httpclient连接池
ElementUI 组件:Container 布局容器
布局容器点击下载learnelementuispringboot项目源码效果图el-container.vue页面效果图项目里el-container.vue代码importPagePathfrom"@/
component
s
ChinaDragonDreamer
·
2024-01-31 19:04
前端
elementui
前端
javascript
vue.js
【Vue3+Ts】简单路由配置页面缓存keepAlive可选控制
router.ts路由文件配置constroutes=[{path:"/",name:"home",meta:{title:"首页",keepAlive:true,//主要代码},
component
:(
极致♀雨
·
2024-01-31 18:35
Vue.js
前端
前端收徒
缓存
vue.js
javascript
百度小程序开发的基础
/smartprogram.baidu.com/docs/develop/devtools/history/一、小程序全局配置App()1、app.json{//设置页面路径的数组"pages":["
component
幸运的lucia
·
2024-01-31 18:58
小程序开发
百度小程序
jeecg的Vue前端加全屏页面,并在新的窗口打开
1.在router.config.js中加路由{path:'/tsgzBigScreenOne',
component
:()=>import('@/views/screen/TsgzBigScreenOne
是茜茜啊啊
·
2024-01-31 17:18
前端
vue.js
javascript
Cocos Creator 3.8:如何根据类名获取对应的组件类
文章目录小众需求:配置文件:json小众需求:配置文件:json{"nodes":[{"name":"/Canvas-002/Mysprite","
component
":"cc.Sprite","properties
HadesNyx
·
2024-01-31 17:50
cocos2d
游戏引擎
模仿奈雪Banner组件
component
sexportdefault{name:'jerry-banner',props:{//是否显示面板指示点indicatorDots:{type:Boolean,default:false
yueF_L
·
2024-01-31 17:19
前端大杂烩
前端
banner
奈雪
uniapp使用Mescroll(上拉加载下拉刷新)
importMescrollBodyfrom"mescroll-uni/mescroll-body.vue"importMescrollUnifrom"mescroll-uni/mescroll-uni.vue"Vue.
component
_小郑有点困了
·
2024-01-31 17:31
uniapp
小程序
uniapp中mescroll的使用
1.视图2.js1.引入js文件,不要忘了mixinsimportMescrollMixinfrom"@/
component
s/mescroll-uni/mescroll-mixins.js";importMescrollMoreItemMixinfrom
白酱酱
·
2024-01-31 16:27
uni-app
前端
day02-用注解方式开发bean
1.HelloWorld的例子改成用注解来实现HelloWorld类,采用@
Component
注解packagecom.spring.annotation;importorg.springframework.stereotype.
Component
墨寒_3338
·
2024-01-31 16:52
【HarmonyOS应用开发】ArkUI 开发框架-基础篇-第一部分(七)
常用基础组件一、组件介绍组件(
Component
)是界面搭建与显示的最小单位,HarmonyOSArkUI声明式开发范式为开发者提供了丰富多样的UI组件,我们可以使用这些组件轻松的编写出更加丰富、漂亮的界面
断水流大撕兄
·
2024-01-31 16:42
实战
前端大杂烩
harmonyos
华为
鸿蒙
鸿蒙系统
前端框架
上一页
22
23
24
25
26
27
28
29
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他