Skip to content
Permalink
master

Commits on Dec 19, 2020

  1. chore: release v1.0.0-beta.22

    antfu committed Dec 19, 2020
  2. feat(getCurrentInstance): Aligning with vue3 (#520)

    * feat(getCurrentInstance): Aligning with vue3
    BREAKING CHANGE: The internal vm can be accessed with `getCurrentInstance().proxy`
    
    ```js
    const vm = getCurrentInstance()
    
    // becomes
    
    const vm = getCurrentInstance().proxy
    ```
    
    * chore: improve
    
    * changes
    
    * update tests
    
    * chore: add tests
    
    Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
    pikax and antfu committed Dec 19, 2020

Commits on Dec 14, 2020

  1. docs: SetupContext.refs type, remove unnecessary docs (#611)

    * Update README.md
    
    * Fix type of SetupContext.ref
    
    * Remove redundant docs
    subdavis committed Dec 14, 2020

Commits on Dec 7, 2020

  1. chore: release v1.0.0-beta.21

    antfu committed Dec 7, 2020
  2. chore: fix tests

    antfu committed Dec 7, 2020
  3. fix: destructure `attrs` from context keep reactive, close #264 (#594)

    antfu committed Dec 7, 2020
  4. docs: update readme about Browser Compatibility (#607)

    * Update readme
    
    * Move "Browser Compatibility" section
    digitorum committed Dec 7, 2020
  5. feat: add type-level `readonly()` api (#593)

    * feat: add type-level `readonly()` api
    
    * Update src/reactivity/readonly.ts
    
    * chore: update tests
    antfu committed Dec 7, 2020
  6. types(defineComponent): fix options API support when using defineComp…

    …onent (#610)
    pikax committed Dec 7, 2020

Commits on Nov 25, 2020

  1. chore: typo and rephrase in readme [skip ci] (#600)

    posva committed Nov 25, 2020

Commits on Nov 24, 2020

  1. chore: release v1.0.0-beta.20

    antfu committed Nov 24, 2020

Commits on Nov 23, 2020

  1. feat: add warn (#596)

    * feat: add warn
    
    * test: add test for warn
    posva committed Nov 23, 2020
  2. fix(types): improve SetupContext types (#595)

    antfu committed Nov 23, 2020
  3. chore(README): point to v3 composition api docs (#597)

    * chore(README): point to v3 composition api docs
    
    * update cn README too
    manniL committed Nov 23, 2020

Commits on Nov 3, 2020

  1. chore: fix typo

    antfu committed Nov 3, 2020

Commits on Nov 2, 2020

  1. chore: release v1.0.0-beta.19

    antfu committed Nov 2, 2020
  2. fix(types): allow any custom options for defineComponent, fix #579 (#584

    )
    antfu committed Nov 2, 2020
    2
  3. fix(types): attrs in SetupContext fix#562 (#582)

    Co-authored-by: lantian.tlan <lantian.tlan@bytedance.com>
    popolan1986 and lantian.tlan committed Nov 2, 2020
  4. fix(types): this type in data(), fix #570 (#576)

    antfu committed Nov 2, 2020

Commits on Oct 27, 2020

  1. Update CHANGELOG.md of v0.6.0 (#578)

    * Update CHANGELOG.md
    
    closes [this issue](#577)
    
    * Update CHANGELOG.md
    carsoli committed Oct 27, 2020

Commits on Oct 21, 2020

  1. chore: release v1.0.0-beta.18

    antfu committed Oct 21, 2020
  2. docs: update zh-CN docs for del

    antfu committed Oct 21, 2020
  3. feat(reactivity): add Vue.delete workaround (#571)

    kiroushi committed Oct 21, 2020
  4. fix(type): vue constructor should not require props with default valu…

    …es (#567)
    
    Co-authored-by: vail <ysywix@gmail.com>
    vaiil and vail committed Oct 21, 2020
  5. fix: better `vueDependency` importing, close #564 (#572)

    Co-authored-by: Javier Pérez <kiroushi@gmail.com>
    antfu and kiroushi committed Oct 21, 2020
  6. chore: update jsx docs, close #568 (#573)

    Co-authored-by: Carlos Rodrigues <david-181@hotmail.com>
    antfu and pikax committed Oct 21, 2020

Commits on Oct 17, 2020

  1. chore: release v1.0.0-beta.17

    antfu committed Oct 17, 2020
  2. docs: update readme (#560)

    Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
    Mister-Hope and antfu committed Oct 17, 2020
  3. fix(types): prop type infer, fix #555 (#561)

    Mister-Hope committed Oct 17, 2020
  4. refactor: watch APIs default to trigger pre-flush (#566)

    BREAKING CHANGE: watch APIs now default to use `flush: 'pre'` instead of
    `flush: 'post'`.
    
      - Check vuejs/vue-next@49bb447 
    
      - This change affects `watch`, `watchEffect`, the `watch` component
        option, and `this.$watch`.
    
      - As pointed out by @skirtles-code in
        [this comment](#1706 (comment)),
        Vue 2's watch behavior is pre-flush, and the ecosystem has many uses
        of watch that assumes the pre-flush behavior. Defaulting to post-flush
        can result in unnecessary re-renders without the users being aware of
        it.
    
      - With this change, watchers need to specify `{ flush: 'post' }` via
        options to trigger callback after Vue render updates. Note that
        specifying `{ flush: 'post' }` will also defer `watchEffect`'s
        initial run to wait for the component's initial render.
    the-owl committed Oct 17, 2020

Commits on Oct 10, 2020

  1. chore: release v1.0.0-beta.16

    antfu committed Oct 10, 2020
  2. fix(SSR): value set for props, fix #550 (#551)

    antfu committed Oct 10, 2020
  3. fix: add emits options to defineComponent(fix #553) (#554)

    Mister-Hope committed Oct 10, 2020

Commits on Oct 4, 2020

  1. chore: release v1.0.0-beta.15

    antfu committed Oct 4, 2020
  2. fix(reactive): fix issue when using reactive `array` in the template (#…

    …532)
    
    Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
    pikax and antfu committed Oct 4, 2020
Older
You can’t perform that action at this time.