1import { createDecorator } from 'vue-class-component'; 2 3const NoCache = createDecorator((options, key) => { 4 // component options should be passed to the callback 5 // and update for the options object affect the component 6 (options.computed[key] as any).cache = false; 7}); 8 9export default NoCache; 10 11