码迷,mamicode.com
首页 >  
搜索关键字:component    ( 5606个结果
VueJS简明教程(二)之组件
组件(Component)是Vue最强大的功能之一。组件可以扩展HTML元素,封装可重用的代码。在较高层面上,组件是自定义元素,Vue的编译器为它添加特殊功能。 在有些情况下,组件也可以表现为用is特性进行了扩展的原生HTML元素。 所有的Vue组件同时也都是Vue的实例,所以可以接受相同的选项对象 ...
分类:Web程序   时间:2020-02-17 12:36:21    阅读次数:93
[Angular] Do relative routing inside component
onSave(personName) { this.person.name = personName; this.peopleService.save(this.person).subscribe(() => { // redirect back people list // this.router ...
分类:其他好文   时间:2020-02-17 01:03:40    阅读次数:77
[Angular] Preserve the current route’s query parameters when navigating with the Angular Router
When we redirect to a different route from within our component's code using the Router.navigate or from within a component template via a [routerLink ...
分类:其他好文   时间:2020-02-16 23:28:08    阅读次数:119
A component required a bean named 'cacheManager' that could not be found.
*************************** APPLICATION FAILED TO START *************************** Description: A component required a bean named 'cacheManager' that ...
分类:系统相关   时间:2020-02-16 23:24:51    阅读次数:271
MarkdownPad2报错: Html Rendering Error (An error occurred with the Html rendering component.)
Window 10安装Markdownpad2 软件后,打开软件提示: An error occurred with the Html rendering component. This … 如下图所示: 出现错误的原因:MarkdownPad 2 在Win10下出现HTML 渲染错误(This v ...
分类:Web程序   时间:2020-02-16 13:12:31    阅读次数:186
vue05-es6模块化和webpack
[toc] 五、es6模块化 "阮一峰的ES6 Module的加载实现" 把功能进行划分,将同一类型的代码整合在一起,所以模块的功能相对复杂,但都同属于一个业务 为什么有模块化 js是按顺序加载的,所以一般相互依的js是具有强制性的 多个js文件定义的引用会污染全局变量,多人协作开发可能会有冲突 可 ...
分类:Web程序   时间:2020-02-15 13:37:39    阅读次数:64
< react router>: (路由)
< react router> (路由): 思维导图: Atrial 文件夹下的index.js 文件内容: 1 import React, { Component } from 'react' 2 import{ 3 Link, 4 }from 'react-router-dom' 5 expor ...
分类:其他好文   时间:2020-02-14 20:44:34    阅读次数:72
[Angular 8 Unit Testing] Testing a component
Setting up a Presentational Component: import {Component, EventEmitter, Input, OnInit, Output, ViewEncapsulation} from '@angular/core'; import {Course ...
分类:其他好文   时间:2020-02-14 18:51:37    阅读次数:71
Vue父子传递案例
实现功能:1、子组件的input输入,改变父组件信息2、父组件对子组件1,3进行监听与控制3、子组件1与子组件3相互关联父子双向通信流程:子组件的input通过事件监听->控制子组件的data中变量/向父组件$emit子事件及变量父组件监听到$emit事件及变量,赋予父组件的变量,通过props传到 ...
分类:其他好文   时间:2020-02-14 14:47:35    阅读次数:63
Tomcat启动失败
Tomcat无法启动 项目状态 Maven项目:基础环境(依赖,基本配置文件)搭建完成,前端页面都导入,部署测试项目环境,出现该问题 问题情景: 1.弹窗提示Tomcat启动失败 2.Console报错: 问题: 严重: A child container failed during start 严 ...
分类:其他好文   时间:2020-02-14 12:48:16    阅读次数:59
5606条   上一页 1 ... 72 73 74 75 76 ... 561 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!