Files
mes-ui-d2/src/pages/index/page.vue
liyang 1691f22cf3 更新地址
Former-commit-id: de192e4331cf6507f1d6b65792db9c8e02e7b3d2 [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6] [formerly de192e4331cf6507f1d6b65792db9c8e02e7b3d2 [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6] [formerly de192e4331cf6507f1d6b65792db9c8e02e7b3d2 [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6] [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6 [formerly 4e659ec9585bd40193f621e2a1adfe447b01735c [formerly ee582d8ba8a8576b17cfda79064ba63bde908a2f]]]]]
Former-commit-id: 0c9e1c6252b593c4dba36c9df36e5192b6675cc3
Former-commit-id: 88bb9b5469b468a707ee148ebab85c9a2e8104c5
Former-commit-id: 836e7e9d626eec4065dc693ca0e0d51214e91506 [formerly 68980db7305a4f3f4f237c10ee4f2324cba9b37c]
Former-commit-id: 0de4be04331d37214f58befdce53c3dcf9dbdf57
Former-commit-id: a0e329466e0a5c22a69abca0e4888eedee9662e4
Former-commit-id: 02290aab53ae88a42f388f90b1ff5574c09c384e
Former-commit-id: 7bede6044d668dc346c8c8126f074d28172ea4de
Former-commit-id: 30883c4ea914733f76758639fc4c7719443099ee
2018-10-24 10:37:04 +08:00

66 lines
2.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<d2-container class="page">
<d2-page-cover
title="I AM D2ADMIN"
sub-title="追求简约美感的后台管理系统集成方案">
<d2-icon-svg style="width: 120px;" name="d2-admin"/>
<template slot="footer">
<div class="page__btn-group">
<span @click="$open('https://github.com/d2-projects')">开源组织</span> |
<span @click="$open('https://doc.d2admin.fairyever.com/zh/')">文档</span> |
<span @click="$open('https://github.com/d2-projects/d2-admin-start-kit')">简化版</span> |
<span @click="$open('https://alibaba.github.io/ice/scaffold?type=vue')">飞冰</span> |
<span @click="$open('https://juejin.im/user/57a48b632e958a006691b946/posts')">掘金</span> |
<span @click="$open('https://awesome.fairyever.com/daily/')">程序员日报</span> |
<el-popover
:width="172"
trigger="hover">
<p class="d2-mt-0 d2-mb-10">D2Projects</p>
<img src="./image/qr@2x.png" style="width: 172px;">
<span slot="reference">微信公众号</span>
<p
style="
font-size: 12px;
margin-top: 0px;
margin-bottom: 0px;
">
官方公众号主要推送前端技术类文章框架资源学习教程以及 D2 系列项目更新信息
</p>
</el-popover>
</div>
<d2-badge/>
<d2-help-btn/>
</template>
</d2-page-cover>
</d2-container>
</template>
<script>
import D2HelpBtn from './components/d2-help-btn'
import D2Badge from './components/d2-badge'
export default {
components: {
D2HelpBtn,
D2Badge
}
}
</script>
<style lang="scss" scoped>
@import '~@/assets/style/public.scss';
.page {
.page__btn-group {
color: $color-text-placehoder;
font-size: 12px;
margin-top: -10px;
margin-bottom: 20px;
span {
color: $color-text-sub;
&:hover {
color: $color-text-main;
}
}
}
}
</style>