书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 5985 个相关结果.
  • Frontend Development

    Front-end development documentation Technical selection Development environment Node installation Front-end project construction ! ! ! Special attention here. If the project repo...
  • Vue 工作

    Vue 和 Vuetify 工作 full-time full-time full-time full-time full-time full-time full-time full-time full-time full-time full-time full-time full-time full-time full-tim...
  • Vue Component Extensions

    Vue Component Extensions Vue Component Extensions After Vue mounts the app and init Framework7, we will have access to Framework7’s initialized instance and some other useful ...
  • Context

    API: The Context Universal keys app (NuxtAppOptions) store (Vuex Store) route (Vue Router Route) params (Object) query (Object) env (Object) isDev (Boolean) isHMR (Boolean) ...
  • Data Properties and Methods

    Data Properties and Methods Data Properties Methods Debouncing and Throttling Data Properties and Methods Data Properties The data option for a component is a function. V...
  • 异步组件

    异步组件 处理加载状态 异步组件 Watch a free video lesson on Vue School 在大型应用中,我们可能需要将应用分割成小一些的代码块,并且只在需要的时候才从服务器加载一个模块。为了简化,Vue 允许你以一个工厂函数的方式定义你的组件,这个工厂函数会异步解析你的组件定义。Vue 只有在这个组件需要被渲染的时候才会触...
  • weex-toolkit

    weex-toolkit 安装 命令 create preview compile 参数 platform run debug 用法 参数 特性 连接设备 调试.vue 文件 调试文件夹中的.vue 文件 Inspector Element NetWork 查看网络请求的总耗时和延时 查看网络请求的header和respons...
  • vue

    Video.js and Vue integration Video.js and Vue integration Here’s a basic Vue player implementation. It just instantiates the Video.js player on mounted and destroys it on bef...
  • methods

    methods methods 类型 :{ [key: string]: Function } 详细 : methods 将被混入到 Vue 实例中。可以直接通过 VM 实例访问这些方法,或者在指令表达式中使用。方法中的 this 自动绑定为 Vue 实例。 注意,不应该使用箭头函数来定义 method 函数 (例如 plus: ...
  • 4. 完整渲染流程

    1939 2019-11-04 《深入剖析Vue源码》
    继上一节内容,我们将Vue 复杂的挂载流程通过图解流程,代码分析的方式简单梳理了一遍,最后也讲到了模板编译的大致流程。然而在挂载的核心处,我们并没有分析模板编译后渲染函数是如何转换为可视化DOM 节点的。因此这一章节,我们将重新回到Vue 实例挂载的最后一个环节:渲染DOM 节点。在渲染真实DOM 的过程中,Vue 引进了虚拟DOM 的概念,这是Vue ...