Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vuejs/vue-class-component
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1b7869a465c35552ed276dc88a09e06699bc7752
Choose a base ref
...
head repository: vuejs/vue-class-component
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9fa8b42b51dfef9b6c69d9ec1948b1e8fabc5535
Choose a head ref
  • 11 commits
  • 20 files changed
  • 5 contributors

Commits on Mar 7, 2020

  1. Copy the full SHA
    1b3edbf View commit details

Commits on Mar 14, 2020

  1. build(deps): bump acorn from 6.4.0 to 6.4.1 (#404)

    Bumps [acorn](https://github.com/acornjs/acorn) from 6.4.0 to 6.4.1.
    - [Release notes](https://github.com/acornjs/acorn/releases)
    - [Commits](acornjs/acorn@6.4.0...6.4.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 14, 2020
    Copy the full SHA
    d18680c View commit details

Commits on Mar 16, 2020

  1. Copy the full SHA
    c81b0d5 View commit details

Commits on May 6, 2020

  1. Copy the full SHA
    70ed762 View commit details
  2. chore: setup Gitpod (#422)

    * simplify code contributions by fully automating the dev setup with Gitpod.
    
    * docs: fix package name
    
    Co-authored-by: Katashin <ktsn55@gmail.com>
    nisarhassan12 and ktsn authored May 6, 2020
    Copy the full SHA
    74f65f6 View commit details

Commits on Jun 30, 2020

  1. build(deps): bump websocket-extensions from 0.1.3 to 0.1.4 (#427)

    Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4.
    - [Release notes](https://github.com/faye/websocket-extensions-node/releases)
    - [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md)
    - [Commits](faye/websocket-extensions-node@0.1.3...0.1.4)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 30, 2020
    Copy the full SHA
    a984a54 View commit details

Commits on Jul 18, 2020

  1. build(deps): bump lodash from 4.17.15 to 4.17.19 (#431)

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@4.17.15...4.17.19)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 18, 2020
    Copy the full SHA
    59d1dd4 View commit details

Commits on Jul 20, 2020

  1. Copy the full SHA
    4c7f651 View commit details
  2. Copy the full SHA
    f02fa0e View commit details
  3. [build] 7.2.4

    ktsn committed Jul 20, 2020
    Copy the full SHA
    3e9d9c7 View commit details
  4. [release] 7.2.4

    ktsn committed Jul 20, 2020
    Copy the full SHA
    9fa8b42 View commit details
15 changes: 15 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
tasks:
- name: Compile
init: yarn install && yarn build && gp sync-done install
command: yarn dev
- name: Docs
init: gp sync-await install
command: yarn docs:dev

ports:
- port: 8080
onOpen: open-preview

vscode:
extensions:
- octref.vetur@0.23.0:TEzauMObB6f3i2JqlvrOpA==
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -2,12 +2,18 @@

ECMAScript / TypeScript decorator for class-style Vue components.

[![npm](https://img.shields.io/npm/v/vue-class-component.svg)](https://www.npmjs.com/package/vue-class-component)
[![npm](https://img.shields.io/npm/v/vue-class-component.svg)](https://www.npmjs.com/package/vue-class-component) [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/vuejs/vue-class-component)

## Document

See [https://class-component.vuejs.org](https://class-component.vuejs.org)

## Online one-click setup for contributing

Contribute to Vue Class Component using a fully featured online development environment that will automatically: clone the repo, install the dependencies and start the docs web server and run `yarn dev`.

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/from-referrer/)

## Questions

For questions and support please use the [the official forum](http://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list of this repo is **exclusively** for bug reports and feature requests.
Loading