@@ -36,6 +36,7 @@ import dayjs from 'dayjs'
36
36
import ' highlight.js/scss/default.scss'
37
37
import ' github-markdown-css/github-markdown.css'
38
38
import ' highlight.js/styles/vs2015.css'
39
+ import Clipboard from ' clipboard'
39
40
40
41
export default {
41
42
name: ' Detail' ,
@@ -56,7 +57,8 @@ export default {
56
57
},
57
58
data () {
58
59
return {
59
- tocShow: false
60
+ tocShow: false ,
61
+ clipboard: ' '
60
62
}
61
63
},
62
64
computed: {
@@ -82,6 +84,20 @@ export default {
82
84
return dayjs (this .info .articleUpdateTime ).format (' YYYY-MM-DD HH:mm:ss' )
83
85
}
84
86
},
87
+ mounted () {
88
+ this .$nextTick (() => {
89
+ this .clipboard = new Clipboard (' .copy-btn' )
90
+ this .clipboard .on (' success' , (e ) => {
91
+ this .$toast .success (' 复制成功' )
92
+ })
93
+ this .clipboard .on (' error' , (e ) => {
94
+ this .$toast .fail (' 复制成功失败' )
95
+ })
96
+ })
97
+ },
98
+ destroyed () {
99
+ this .clipboard .destroy ()
100
+ },
85
101
methods: {
86
102
async addStar () {
87
103
const result = await this .$axios .$post (' /api/vue-blog/addStar' , {
@@ -146,6 +162,7 @@ export default {
146
162
z-index : 10 ;
147
163
background-color : #fff ;
148
164
box-shadow : -2px 2px 4px #ccc ;
165
+ border-radius : 4px 0 0 4px ;
149
166
& .markdownIt-TOC ::before {
150
167
content : ' 文章目录:' ;
151
168
font-weight : 700 ;
@@ -158,36 +175,62 @@ export default {
158
175
background : #1e1e1e !important ;
159
176
}
160
177
pre .hljs {
161
- padding : 14 px 2px ;
162
- border-radius : 5px ;
178
+ padding : 18 px 2px 18 px 40 px !important ;
179
+ border-radius : 5px !important ;
163
180
position : relative ;
164
- ol {
165
- list-style : decimal ;
166
- margin : 0 ;
167
- margin-left : 40px ;
168
- padding : 0 ;
169
- li {
170
- list-style : decimal-leading-zero ;
171
- position : relative ;
172
- padding-left : 10px ;
173
- .line-num {
174
- position : absolute ;
175
- left : -40px ;
176
- top : 0 ;
177
- width : 40px ;
178
- height : 100% ;
179
- border-right : 1px solid rgba (0 , 0 , 0 , 0.66 );
181
+ font-size : 14px !important ;
182
+ line-height : 22px !important ;
183
+ overflow : hidden !important ;
184
+ code {
185
+ display : block !important ;
186
+ margin : 0 10px !important ;
187
+ overflow-x : auto !important ;
188
+ }
189
+ .line-numbers-rows {
190
+ position : absolute ;
191
+ pointer-events : none ;
192
+ top : 18px ;
193
+ bottom : 18px ;
194
+ left : 0 ;
195
+ font-size : 100% ;
196
+ width : 40px ;
197
+ text-align : center ;
198
+ letter-spacing : -1px ;
199
+ border-right : 1px solid rgba (0 , 0 , 0 , 0.66 );
200
+ user-select : none ;
201
+ counter-reset : linenumber;
202
+ span {
203
+ pointer-events : none ;
204
+ display : block ;
205
+ counter-increment : linenumber;
206
+ & :before {
207
+ content : counter (linenumber );
208
+ color : #999 ;
209
+ display : block ;
210
+ text-align : center ;
180
211
}
181
212
}
182
213
}
183
214
b .name {
184
215
position : absolute ;
185
216
top : 2px ;
186
- right : 12 px ;
217
+ right : 50 px ;
187
218
z-index : 10 ;
188
219
color : #999 ;
189
220
pointer-events : none ;
190
221
}
222
+ .copy-btn {
223
+ position : absolute ;
224
+ padding : 0 4px ;
225
+ top : 2px ;
226
+ right : 4px ;
227
+ z-index : 10 ;
228
+ color : #333 ;
229
+ cursor : pointer ;
230
+ background-color : #fff ;
231
+ border : 0 ;
232
+ border-radius : 2px ;
233
+ }
191
234
}
192
235
}
193
236
& .no-toc {
0 commit comments