28 lines
388 B
Vue
28 lines
388 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<index-stencil></index-stencil>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import indexStencil from "./demo/index-stencil.vue";
|
||
|
export default {
|
||
|
name: 'App',
|
||
|
components: {
|
||
|
indexStencil
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
html,body,#app {
|
||
|
height:100%;
|
||
|
margin:0px;
|
||
|
padding:0px
|
||
|
}
|
||
|
.v-modal{
|
||
|
opacity: 0.5!important;
|
||
|
background: rgba(0,0,0,0.5)!important;
|
||
|
}
|
||
|
</style>
|