chore(sfc-playground): fix autoresize
This commit is contained in:
parent
0cfa2112ce
commit
51f74679ef
@ -3,7 +3,11 @@ import Header from './Header.vue'
|
|||||||
import { Repl, ReplStore } from '@vue/repl'
|
import { Repl, ReplStore } from '@vue/repl'
|
||||||
import { watchEffect } from 'vue'
|
import { watchEffect } from 'vue'
|
||||||
|
|
||||||
document.documentElement.style.setProperty('--vh', window.innerHeight + `px`)
|
const setVH = () => {
|
||||||
|
document.documentElement.style.setProperty('--vh', window.innerHeight + `px`)
|
||||||
|
}
|
||||||
|
window.addEventListener('resize', setVH)
|
||||||
|
setVH()
|
||||||
|
|
||||||
const store = new ReplStore({
|
const store = new ReplStore({
|
||||||
serializedState: location.hash.slice(1),
|
serializedState: location.hash.slice(1),
|
||||||
@ -18,7 +22,7 @@ watchEffect(() => history.replaceState({}, '', store.serialize()))
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Header :store="store" />
|
<Header :store="store" />
|
||||||
<Repl :store="store" :showCompileOutput="true" />
|
<Repl :store="store" :showCompileOutput="true" :autoResize="true" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user