I'm using the vue.esm.browser.js module for Vue, which works without problems:
import Vue from 'vue.esm.browser.js';
I can't however find a way to import the reactive and isReactive functions. I've tried
import { reactive, isReactive } from 'vue.esm.browser.js';
but it doesn't work. I'd appreciate any help to get this working!