INNER CODE UNIT · JavaScript
useWizard
nisrulz/app-privacy-policy-generator · src/js/main.js:96
function useWizard(state) {
var { reactive, computed } = Vue;
var wizard = reactive({
wizardStep: 1,
totalWizardSteps: 8,
contentRenderType: 1,
deviceType: "",
deviceTypePlural: "",
platformDesc: "",
deviceIdDesc: "",
osDesc: "",
browserDesc: "",
uninstallDesc: "",
});
wizard.canAdvance = computed(function () {
switch (wizard.wizardStep) {