mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-24 15:18:14 -05:00
28 lines
471 B
Vue
28 lines
471 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'picgo'
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
body,
|
|
html
|
|
padding 0
|
|
margin 0
|
|
height 100%
|
|
font-family "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif
|
|
#app
|
|
user-select none
|
|
overflow hidden
|
|
.el-button-group
|
|
width 100%
|
|
.el-button
|
|
width 50%
|
|
</style>
|