2019-11-29 11:37:48 +08:00

38 lines
609 B
Vue

<template>
<div class="app">
<van-doc :config="config" :simulator="simulator">
<router-view />
</van-doc>
</div>
</template>
<script>
import VanDoc from './components';
import { config } from 'desktop-entry';
export default {
components: {
VanDoc
},
data() {
return {
config: config.site,
simulator: `mobile.html${location.hash}`
};
}
};
</script>
<style lang="less">
.van-doc-intro {
padding-top: 20px;
font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
text-align: center;
p {
margin-bottom: 20px;
}
}
</style>