首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏JavaScript高级程序设计

    web components的一些知识点

    实现web components的技术点 自定义元素这个技术点可以让开发者通过JS的API直接自定义HTML标签,实现方式有两种:一是使用customElements.define('user-profile 如: // 定义元素 user-profile customElements.define('user-profile') // 使用 <user-profile></user-profile> 二是可以使用类生成

    66110编辑于 2022-07-14
  • 来自专栏四楼没电梯

    Git 极简使用指南

    的新分支** git switch -c feature/user-profile 开始编码和修改文件… 分步提交你的修改: # 查看修改了哪些文件 git status # 添加你想要提交的文件 info display" 将你的功能分支推送到远程仓库,以便备份和团队评审: # **首次推送该分支时,需要设置上游(upstream)分支** git push -u origin feature/user-profile 切换回主分支 git switch main # 拉取最新的主分支代码,以防别人更新了 git pull origin main # **将你的功能分支合并进来** git merge feature/user-profile # **将合并后的主分支推送到远程** git push origin main (可选)删除已经合并的分支: # 删除本地分支 git branch -d feature/user-profile # 删除远程分支 git push origin --delete feature/user-profile 掌握以上内容,你就可以自信地使用 Git 进行版本控制了。

    66010编辑于 2025-06-12
  • 来自专栏不会跳舞的鸟

    Vue.js 学习笔记 - 组件(Components)

    } } }) 自定义事件 侦听子组件抛出的事件,必须用v-on在模板中绑定 绑定原生事件 v-on:click.native 子组件索引:ref

    <user-profile ref="profile"></user-profile>
    <script> var parent = new Vue({ el: '#parent' }) var child

    77330编辑于 2022-11-16
  • 来自专栏大宇笔记

    微前端的前世今生

    : { "@feed-me/browse-restaurants": "^1.2.3", "@feed-me/order-food": "^4.5.6", "@feed-me/user-profile browse.example.com/index.html', '/order-food': 'https://order.example.com/index.html', '/user-profile '/': window.renderBrowseRestaurants, '/order-food': window.renderOrderFood, '/user-profile 'micro-frontend-browse-restaurants', '/order-food': 'micro-frontend-order-food', '/user-profile

    82610发布于 2021-03-15
  • 来自专栏趣谈前端

    《前端5分钟》之使用pace.js美化你的网站加载进度条

    进度条应消失在错误状态),但我们寻找的元素可能永远不会出现: paceOptions = { elements: { selectors: ['.timeline,.timeline-error', '.user-profile 对于此示例,当.timeline或.timeline-error存在时以及.user-profile 或.profile-error存在时。

    2.5K20发布于 2019-11-25
  • 来自专栏趣谈前端

    推荐! 使用pace.js美化你的网站加载进度条

    进度条应消失在错误状态),但我们寻找的元素可能永远不会出现: paceOptions = { elements: { selectors: ['.timeline,.timeline-error', '.user-profile 对于此示例,当.timeline或.timeline-error存在时以及.user-profile 或.profile-error存在时。

    3K30编辑于 2022-02-09
  • Java全栈开发面试实战:从基础到微服务的全面挑战

    ```vue <template>

    {{ name }}

    {{ bio }}

    name: 'John Doe', bio: 'A passionate developer...' }; } } </script> <style scoped> .user-profile

    10100编辑于 2025-11-05
  • 来自专栏FunTester

    Selenium编写自动化用例的8种技巧

    ; wait.until(ExpectedConditions.visibilityOf(driver.findElement(By.xpath("//a[@class='user-profile ; wait.until(ExpectedConditions.visibilityOf(driver.findElement(By.xpath("//a[@class='user-profile sucesfully"); takescreenshot(); driver.findElement(By.xpath("//a[@class='user-profile ; wait.until(ExpectedConditions.visibilityOf(driver.findElement(By.xpath("//a[@class='user-profile sucesfully"); takescreenshot(); driver.findElement(By.xpath("//a[@class='user-profile

    1.6K10发布于 2019-11-04
  • 来自专栏技术热文

    Git 提交备注应该如何规范

    例如,“feat(user-profile): add avatar upload”表明是在用户个人资料模块中新增了头像上传功能。 例如,一个符合语义化提交规范的提交信息可能是这样的:“feat(user-profile): add avatar upload”。 其中,“feat”表示新增功能,“user-profile”是范围,说明是在用户个人资料模块中进行的更改,“add avatar upload”是主题,清晰地描述了提交的主要内容。

    62310编辑于 2025-06-05
  • 来自专栏Dimples开发记

    使用 strapi 快速构建 API 和 CMS 管理系统

    实战用户注册接口 通过 strapi 我们已经得到了 user-profile 相关的增删改查 API 接口,但是在实际业务开发当中,不可能只有这种简单的增删改查接口,这里我带领大家实现一个用户注册的接口 2、编码 已经明白了我们需要开发的接口之后,下面直接进入编码阶段,在 user-profile 的 routes 下面新增一个 register.ts 文件,方便将用户的请求映射到我们自己的 controller types/md5 -D 加下来编写我们的业务代码,user-profile.ts 当中的代码如下所示, 在 strapi 为我们创建好的 controller 之上增加我们自己的 : /** * user-profile

    15.3K44编辑于 2023-03-08
  • 来自专栏码艺坊

    单文件组件(SFC):Vue.js 开发的艺术

    <template>

    {{ userName }}

    {{ userBio }}

    </template userName: 'John Doe', userBio: 'A passionate web developer.' }; }};</script><style scoped>.user-profile

    92821编辑于 2024-08-11
  • 来自专栏Super 前端

    Vue基础:组件--slot、异步组件、递归组件及其他

    <user-profile ref="profile">user-profile> div> var parent = new Vue({ el: '#parent

    3.2K40发布于 2021-08-30
  • 来自专栏柠檬先生

    VUE 入门基础(8)

    my-component>    #子组件索引       可以使用ref 为子组件指定一个索引ID 例如:       

            <user-profile ref="profile"></user-profile>       
          var parent = new Vue({           el: '#

    1.2K90发布于 2018-01-22
  • 来自专栏Super 前端

    Vue基础:组件--slot、异步组件、递归组件及其他

    <user-profile ref="profile"></user-profile>
    var parent = new Vue({ el: '#parent

    2K41发布于 2019-08-15
  • 来自专栏FreeBuf

    700美金的WordPress Dos漏洞CVE-2018-6389分析

    htmlhint,htmlhint-kses,code-editor,wp-theme-plugin-editor,wp-playlist,zxcvbn-async,password-strength-meter,user-profile htmlhint,htmlhint-kses,code-editor,wp-theme-plugin-editor,wp-playlist,zxcvbn-async,password-strength-meter,user-profile

    1.7K10发布于 2019-12-25
  • 从全栈开发到微服务架构:一个Java工程师的实战之路

    以下是一个典型的Git Flow分支结构: ```bash # 创建功能分支 git checkout -b feature/user-profile # 合并到develop分支 git checkout develop git merge feature/user-profile # 发布到master分支 git checkout master git merge develop ``` - `

    20110编辑于 2025-10-21
  • 来自专栏孤鸿

    Centos7搭建CiscoAnyConnect

    #x6237;端兼容性支持 cisco-client-compat = true #定义user-profile user-profile = /etc/ocserv/profile.xml 测试服务和添加用户 ocpasswd -c /etc/ocserv/ocpasswd username #username

    1.5K20编辑于 2022-10-04
  • 来自专栏超然的博客

    vue—你必须知道的

    为此可以使用 ref 为子组件指定一个索引 ID*

    <user-profile ref="profile"></user-profile> </div

    2.4K20发布于 2018-08-03
  • 来自专栏前端开发

    解构赋值使用方法全面详解与实例解析

    UserProfile({ name, age, avatar = "default.png", onEdit = () => {} }) { return ( <div className="<em>user-profile</em>

    26610编辑于 2025-06-19
  • 来自专栏前端开发

    Vue集合vuex封装状态管理库

    $mount('#app')组件中使用示例<template>

    <img

    27710编辑于 2025-08-25
领券