8000 Merge pull request #1754 from liangminhua/dev · githubsunyf/cms@de2c1b3 · GitHub
[go: up one dir, main page]

Skip to content

Commit de2c1b3

Browse files
authored
Merge pull request siteserver#1754 from liangminhua/dev
IE浏览器不能正确解析对象属性缩写
2 parents 0c7320e + 704698e commit de2c1b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SiteServer.Web/Home/pages/contents.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ <h4 class="page-title">稿件管理</h4>
237237
<div class="col-3">
238238
<multiselect v-on:select="onPageSelect" v-model="page" placeholder="Select one" :options="pageOptions"
239239
:searchable="false" :show-labels="false">
240-
<template slot="singleLabel" slot-scope="{ option }">第 {{ option }} 页(共 {{ pages }} 页)</template>
240+
<template slot="singleLabel" slot-scope="props">第 {{ props.option }} 页(共 {{ pages }} 页)</template>
241241
<template slot="option" slot-scope="props"> 第 {{ props.option }} 页 </template>
242242
</multiselect>
243243
</div>

SiteServer.Web/SiteServer/Cms/contents.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@
236236
<div class="col-3">
237237
<multiselect v-on:select="onPageSelect" v-model="page" placeholder="Select one" :options="pageOptions" :searchable="false"
238238
:show-labels="false">
239-
<template slot="singleLabel" slot-scope="{ option }">第 {{ option }} 页(共 {{ pages }} 页)</template>
239+
<template slot="singleLabel" slot-scope="props">第 {{ props.option }} 页(共 {{ pages }} 页)</template>
240240
<template slot="option" slot-scope="props">
241241
{{ props.option }}
242242
</template>

0 commit comments

Comments
 (0)
0