mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
33 lines
540 B
Vue
33 lines
540 B
Vue
<template>
|
|
<div class="app">
|
|
<van-doc :config="config" :simulator="simulator">
|
|
<router-view />
|
|
</van-doc>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { config } from '../../dist/desktop-config';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
config,
|
|
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>
|