书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 5831 个相关结果.
  • 客户端激活 (client-side hydration)

    客户端激活 (client-side hydration) 一些需要注意的坑 客户端激活 (client-side hydration) 所谓客户端激活,指的是 Vue 在浏览器端接管由服务端发送的静态 HTML,使其变为由 Vue 管理的动态 DOM 的过程。 在 entry-client.js 中,我们用下面这行挂载(mount)应用程序:...
  • 介绍

    Vant 介绍 特性 版本提示 快速上手 浏览器支持 维护状态 链接 官方生态 社区生态 其他链接 贡献 核心团队 贡献者们 贡献指南 开源协议 Vant 轻量、可靠的移动端 Vue 组件库 介绍 Vant 是一个轻量、可靠的移动端组件库 ,于 2017 年开源。 目前 Vant 官方提供了 Vue 2 版本 、...
  • Finding elements and components

    Finding Elements Creating the Components find with querySelector syntax Finding Components with name and Component findAll and findAllComponents Conclusion This book i...
  • Release Notes

    2365 2019-10-20 《Nuxt.js v2.10.x Guide》
    Release Notes v2.10.1 🐞 Fixes 6504 Remove consola from client 6515 Fix error when router.trailingSlash is false 6362 Remove trailing slash when no subFolders are used 6520 ...
  • 基本功能

    基本功能 初始目录结构 assets, static components core middlewares pages store lavas.config.js 其他文件 .lavas Lavas 自动路由生成方法 普通情况 Index.vue 的特殊处理 动态参数 嵌套路由 基本功能 初始目录结构 通过 lav...
  • Computed Properties and Watchers

    Computed Properties and Watchers Computed Properties Basic Example Computed Caching vs Methods Computed Setter Watchers Computed vs Watched Property Computed Properties a...
  • plugins

    API: plugins 属性配置 plugins 属性配置 API: plugins 属性配置 plugins 属性配置 类型: Array 数组元素类型: String 或 Object 如果数组元素类型是 Object , 其具有以下属性: src: String (文件的路径) ssr: Boolean (默认为 ...
  • 路由

    路由 路由 vue-router 通过小幅度修改官方路由,实现了 @hippy/vue-router ,提供一样的接口。 文档可以直接进行参考:vue-router 官方网站 。 但不支持页面切换时的动画效果,因为 <transition> 组件尚未实现。
  • Introduction

    Introduction What is NuxtJS? Features How it Works Schema Server Rendered (Universal SSR) Single Page Applications (SPA) Static Generated (Pre Rendering) Static Site Generati...
  • 组件化

    1772 2018-12-10 《Vue.js 技术揭秘》
    组件化 组件化 Vue.js 另一个核心思想是组件化。所谓组件化,就是把页面拆分成多个组件 (component),每个组件依赖的 CSS、JavaScript、模板、图片等资源放在一起开发和维护。组件是资源独立的,组件在系统内部可复用,组件和组件之间可以嵌套。 我们在用 Vue.js 开发实际项目的时候,就是像搭积木一样,编写一堆组件拼装生成页面...