Global setting for live editor visibility
parent
277b0a2e89
commit
44eefa9bea
|
@ -110,7 +110,7 @@ router.beforeEach(function (to, from, next) {
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
app.config.globalProperties.$appState = reactive({inputStyle: 'outlined', darkTheme: false});
|
app.config.globalProperties.$appState = reactive({inputStyle: 'outlined', darkTheme: false, codeSandbox: false});
|
||||||
|
|
||||||
app.use(PrimeVue, {ripple: true});
|
app.use(PrimeVue, {ripple: true});
|
||||||
app.use(ToastService);
|
app.use(ToastService);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<span style="margin-top: -0.2rem">
|
<span v-if="showEditor">
|
||||||
<Button @click="postSandboxParameters()" label="Edit in CodeSandbox" class="liveEditorButton" />
|
<Button @click="postSandboxParameters()" label="Edit in CodeSandbox" class="liveEditorButton" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
@ -45,7 +45,7 @@ export default {
|
||||||
activeButtonIndex: {
|
activeButtonIndex: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
postSandboxParameters() {
|
postSandboxParameters() {
|
||||||
|
@ -494,6 +494,11 @@ img.flag {
|
||||||
|
|
||||||
return this.createSandboxParameters(`${name}${extension}`, _files, extDependencies);
|
return this.createSandboxParameters(`${name}${extension}`, _files, extDependencies);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
showEditor() {
|
||||||
|
return this.$appState.codeSandbox;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue