码迷,mamicode.com
首页 >  
搜索关键字:welcome    ( 1542个结果
Hello World Hexo
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in ...
分类:其他好文   时间:2021-07-23 17:39:58    阅读次数:0
vue上传
<template> <div id="app"> <!-- <img alt="Vue logo" src="./assets/logo.png"> --> <!-- <HelloWorld msg="Welcome to Your Vue.js App"/> --> <!-- <el-uploa ...
分类:Web程序   时间:2021-07-19 16:58:35    阅读次数:0
react学习-组件和props传值
函数组件 // /src/index.js...function Welcome (props) { return ( <div> <h3>hello function component</h3> <span>{props.data}</span> </div> )} 声明一个函数,以返回值的形式 ...
分类:其他好文   时间:2021-06-20 18:15:24    阅读次数:0
react学习-组合与继承
在父组件中引入组件时使用双标签的形式。把要重用的代码或者组件插入到双标签里面 ...render () { return ( <FancyBorder color="blue"> <h1 className="Dialog-title"> Welcome </h1> <p className="Di ...
分类:其他好文   时间:2021-06-20 18:11:05    阅读次数:0
vue3 如何获取 dom
#### vue3 如何获取 dom 1. 通过 ref 1. 在 html 标签上指定 ref 属性 2. 在 setup 中定义并返回.注意:**标签上的 ref 属性名需要跟 setup 中的对应** ```javascript <h1 ref="msg">Welcome to vue3 ap ...
分类:其他好文   时间:2021-06-15 18:23:11    阅读次数:0
[设计模式]3.1简单工厂模式
一、卖票案例 //测试 public class CilentTest { public static void main(String arg[]){ Customer p1=new Children(); System.out.println(p1.calculate(100.00)); Cus ...
分类:其他好文   时间:2021-05-24 14:17:47    阅读次数:0
GO语言学习基础-学生管理系统的实现
1. 编写 main.go 程序 ` package main import ( "fmt" "os" ) var smr stuMgr //声明一个全局的全局变量学生管理smr // 菜单函数 func showMenu() { fmt.Println(" Welcome to sms! ") f ...
分类:编程语言   时间:2021-05-24 13:24:34    阅读次数:0
EOVA框架学习——项目启动
一、前期的准备工作 1,JDK、MySQL、eclipse、tomcat、maven的下载安装 2、配置好maven的环境变量 3、配置maven的远程仓库地址 4、配置eclipse里面maven的Installations、user settings 二、项目准备 1、从GIT上download ...
分类:其他好文   时间:2021-04-16 12:25:05    阅读次数:0
Spring MVC工程搭建
1:引入jar包 2:配置web.xml 声明DispatchServlet,监听请求 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmln ...
分类:编程语言   时间:2021-04-07 10:39:48    阅读次数:0
Django创建视图
Django的视图 简单的视图 我们将在 myapp 创建一个简单的视图显示: "welcome to yiibai !" 查看如下的视图 ? from django.http import HttpResponse def hello(request): text = """<h1>welcome ...
分类:其他好文   时间:2021-04-05 12:18:07    阅读次数:0
1542条   1 2 3 4 ... 155 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!