书栈网 · BookStack 本次搜索耗时 0.010 秒,为您找到 2325 个相关结果.
  • Vue CLI

    3801 2019-02-01 《Vue.js 入门教程》
    Vue CLI 版本 开始 目录结构 组件化构建模型图 .vue 单文件组件 ECMAScript 6 Module npm run dev Vue CLI 3(还没有正式发布) Vue CLI Vue CLI 是 Vue 的脚手架工具,它可以帮助我们快速生成 Vue 基础项目代码,提供开箱即用的功能特性。 基础代码目录结构 ...
  • 概述

    概述 JavaScript 层层回调的异步编程让人望而生畏。而 Promise 的诞生就是为了解决这个问题,它提供了一种 Future 模式,大大简化了异步编程的复杂性。而 Promise/A+ (中文版 )是一个通用的、标准化的规范,它提供了一个可互操作的 then 方法的实现定义。Promise/A+ 规范的实现 有很多,它们的共同点就是都有一个标准...
  • Indexed Database API 2.0

    Indexed Database API 2.0 Indexed Database API 2.0 W3C Recommendation, 30 January 2018 Abstract Status of this document 1. Introduction 2. Constructs 3. Exceptions 4...
  • throw-expressions

    @babel/plugin-proposal-throw-expressions Example Installation Usage With a configuration file (Recommended) Via CLI Via Node API References @babel/plugin-proposal-throw-e...
  • Destructuring for Easier Data Access

    Destructuring for Easier Data Access Destructuring for Easier Data Access Object and array literals are two of the most frequently used notations in JavaScript, and thanks to t...
  • export-namespace-from

    @babel/plugin-proposal-export-namespace-from Example Installation Usage Via .babelrc (Recommended) Via CLI Via Node API References @babel/plugin-proposal-export-namespac...
  • export-default-from

    @babel/plugin-proposal-export-default-from Example Installation Usage Via .babelrc (Recommended) Via CLI Via Node API References @babel/plugin-proposal-export-default-fr...
  • 5.11 With Statements

    5.11 With Statements 5.11 With Statements Use of the ‘with’ statement in TypeScript is an error, as is the case in ECMAScript 5’s strict mode. Furthermore, within the body of a...
  • Optional catch clause variables

    Optional catch clause variables Optional catch clause variables Thanks to work done by @tinganho , TypeScript 2.5 implements a new ECMAScript feature that allows users to omit ...
  • TypeScript 介绍

    2567 2019-02-20 《Angular 入门》
    TypeScript 介绍 TypeScript 是什么 TypeScript 是 JavaScript 的强类型版本。然后在编译期去掉类型和特有语法,生成纯粹的 JavaScript 代码。由于最终在浏览器中运行的仍然是 JavaScript,所以 TypeScript 并不依赖于浏览器的支持,也并不会带来兼容性问题。 TypeScript ...