vue 模板语法是这样的: html: <div id='app'> <!-- 调用该组件之前必须先注册该组件! --> <test></test> </div> js: new Vue({ components: { // 注册 test 组件 test: { template: '<div cl ...
分类:
其他好文 时间:
2021-04-19 15:27:04
阅读次数:
0
head部分: <script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script> <script type="text/javascript" src="bower_components ...
分类:
其他好文 时间:
2021-04-14 12:17:46
阅读次数:
0
head部分: <script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script> <script type="text/javascript" src="bower_components ...
分类:
其他好文 时间:
2021-04-14 12:11:22
阅读次数:
0
<template> <div>{{propContent}}</div> </template> <script> import { watchEffect, watch, ref } from "vue"; export default { name: "", components: {}, m ...
分类:
其他好文 时间:
2021-04-09 13:36:07
阅读次数:
0
项目使用的是ant-pro模板 有个可编辑表格的需求,效果图如下 ant-pro提供了EditableProTable 组件,我使用的是这种https://procomponents.ant.design/components/editable-table 不过这里展示的默认都是input输入框,我 ...
分类:
其他好文 时间:
2021-03-29 11:44:39
阅读次数:
0
react-loadable简单实现 什么是react-loadable npm desc:A higher order component for loading components with dynamic imports.一个异步加载component的高阶组件 组件拆分 做路由拆分可以达到 ...
分类:
其他好文 时间:
2021-03-16 11:43:46
阅读次数:
0
配置文件 flume-taildir-logger.conf: # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1. ...
分类:
其他好文 时间:
2021-03-08 13:38:15
阅读次数:
0
flume-netcat-logger.conf 文件编写: # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.s ...
分类:
Web程序 时间:
2021-03-06 14:54:47
阅读次数:
0
原文:Passing State & Calling Functions Between Parent & Children in ReactJS Passing state between components is a common use case. Generally, we use a s ...
分类:
Web程序 时间:
2021-02-20 12:14:04
阅读次数:
0
官方文档:https://www.tslang.cn/docs/handbook/react-&-webpack.html 前提准备 项目结构 demo/ ├─ dist/ └─ src/ └─ components/ 初始化 npm init 安装依赖 npm install -g webpack ...
分类:
Web程序 时间:
2021-02-18 13:04:23
阅读次数:
0