1.0.0 • Published 4 years ago

wepy-remove-before-set-data v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

wepy-remove-before-set-data

A workaround to remove the before-setData hook in wepy for fixing issues of using components.

Install

npm install wepy-remove-before-set-data --save-dev

How to use

/* wepy.config.js */

// import the plugin
const RemoveBeforeSetData = require('wepy-remove-before-set-data');

// add the plugin
module.exports = {
  plugins: [
	// by default it's disabled
    RemoveBeforeSetData({ enabled: true }),
  ],
};

Things to know

This is a temporary workaround for fixing the wepy2 - the issue ticket #2356. It works for @wepy/core 2.0.0-alpha.9 and probably won't be needed in the later versions.