ng-template、ng-content、ng-container ng-template、ng-content、ng-container一、ng-templateng-template 是 Angular 结构型指令中的一种,用于定义模板渲染 HTML(模板加载)。定义的模板不会直接显示出来,需要通过其他结构型指令(如 ng-if)或 template-ref 将模块内容渲染到页面中。 2021-05-22 开发 #angular
Vue.set() Vue.set()给对象新增属性123456789101112data () { return { student: { name: '', sex: '' } }}mounted () { this 2021-03-23 开发 #vue
vue键盘事件 vue 回车键登录在 mounted 中绑定监听事件1234mounted(){ //绑定事件 window.addEventListener('keydown',this.keyDown);} 登录方法12345678methods:{ keyDown(e){ //如果是回车则执行登录方法 2021-03-23 开发 #vue