Socket
Socket
Sign inDemoInstall

@vue/composition-api

Package Overview
Dependencies
2
Maintainers
4
Versions
106
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
Previous1
78910

0.3.2

Diff

Changelog

Source

0.3.2

  • Improve TypeScript type infer for props option #106.
  • Fix return type of createComponent not being compatible with vue-router #130.
  • Expose listeners on SetupContext #132.
liximomo
published 0.3.1 •

Changelog

Source

0.3.1

  • Fix cleaup callback not running when watcher stops #113.
  • Fix watcher callback not flushing at right timing #120.
liximomo
published 0.3.0 •

Changelog

Source

0.3.0

  • Improve TypeScript type definitions.
  • Fix context.slots not being available before render #84.

Changed

The render function returned from setup no longer receives any parameters.

Previous

export default {
  setup() {
    return props => h('div', prop.msg);
  },
};

Now

export default {
  setup(props) {
    return () => h('div', prop.msg);
  },
};
liximomo
published 0.2.1 •

Changelog

Source

0.2.1

  • Declare your expected prop types directly in TypeScript:

    import { createComponent, createElement as h } from '@vue/composition-api';
    
    interface Props {
      msg: string;
    }
    
    const MyComponent =
      createComponent <
      Props >
      {
        props: {
          msg: {}, // required by vue 2 runtime
        },
        setup(props) {
          return () => h('div', props.msg);
        },
      };
    
  • Declare ref type in TypeScript:

    const dateRef = ref < Date > new Date();
    
  • Fix createComponent not working with import() #81.

  • Fix inject type declaration #83.

liximomo
published 0.2.0 •

Changelog

Source

0.2.0

Fixed

  • computed property is called immediately in reactive() #79.

Changed

liximomo
published 0.1.0 •

Changelog

Source

0.1.0

The package has been renamed to @vue/composition-api to be consistent with RFC.

The @vue/composition-api reflects the Composition API RFC.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc