LimitRange

This commit is contained in:
huanqing.shao
2019-10-18 23:47:36 +08:00
parent b04a44e4d4
commit 445e05855a
27 changed files with 1072 additions and 389 deletions

View File

@@ -51,7 +51,7 @@
</div>
<div class="page-nav" style="max-width: 1000px; padding-top:0; margin-top: 1rem;">
<div class="page-nav" style="max-width: 1000px; padding-top:0; margin-top: 1rem;" v-if="!$frontmatter.lessAds">
<AdSensePageBottomInline/>
</div>
<!-- <div style="text-align: center; margin-bottom: 10px;" v-if="$page.path.indexOf('/learning/') === 0">

View File

@@ -1,7 +1,7 @@
<template>
<div>
<div v-for="(item, key) in vssues" :key="key">
<Vssue v-if="item" v-show="key === $route.path" :issueId="item" :options="options"/>
<Vssue v-if="item && item > 0" v-show="key === $route.path" :issueId="item" :options="options"/>
<div v-if="item === undefined && isLocalHost" v-show="key === $route.path" :key="key">
<el-button type="danger" @click="vssues[key] = ''">请创建 VssueId</el-button>
</div>