We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497b96f commit f2fcdeeCopy full SHA for f2fcdee
index.html
@@ -1,15 +1,15 @@
1
<!DOCTYPE html>
2
<html>
3
-<head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6
- <meta name="renderer" content="webkit">
7
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
8
- <title>Juicy</title>
9
-</head>
10
-<body>
11
-<script src=<%= htmlWebpackPlugin.options.path %>/tinymce/tinymce.min.js></script>
12
-<div id="app"></div>
13
-<!-- built files will be auto injected -->
14
-</body>
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="renderer" content="webkit">
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
+ <title>vue-element-admin</title>
+ </head>
+ <script src=<%= htmlWebpackPlugin.options.path %>/tinymce/tinymce.min.js></script>
+ <body>
+ <div id="app"></div>
+ <!-- built files will be auto injected -->
+ </body>
15
</html>
src/directive/sticky.js
@@ -10,12 +10,12 @@ vueSticky.install = Vue => {
elStyle.position = '-webkit-sticky'
elStyle.position = 'sticky'
- // if the browser support css sticky(Currently Safari, Firefox and Chrome Canary)
- // if (~elStyle.position.indexOf('sticky')) {
- // elStyle.top = `${stickyTop}px`;
16
- // elStyle.zIndex = zIndex;
17
- // return
18
- // }
+ // if the browser support css sticky(Currently Safari, Firefox and Chrome Canary)
+ // if (~elStyle.position.indexOf('sticky')) {
+ // elStyle.top = `${stickyTop}px`;
+ // elStyle.zIndex = zIndex;
+ // return
+ // }
19
const elHeight = el.getBoundingClientRect().height
20
const elWidth = el.getBoundingClientRect().width
21
elStyle.cssText = `top: ${stickyTop}px; z-index: ${zIndex}`
src/views/components-demo/dndList.vue
@@ -1,8 +1,10 @@
<template>
<div class="components-container">
- <code>drag-list base on <a href="https://github.com/SortableJS/Vue.Draggable" target="_blank">Vue.Draggable</a></code>
+ <code>drag-list base on
+ <a href="https://github.com/SortableJS/Vue.Draggable" target="_blank">Vue.Draggable</a>
+ </code>
<div class="editor-container">
- <dnd-list :list1="list1" :list2="list2" list1Title="头条列表" list2Title="文章池"></dnd-list>
+ <dnd-list :list1="list1" :list2="list2" list1Title="头条列表" list2Title="文章池"></dnd-list>
</div>
</template>
src/views/components-demo/markdown.vue
@@ -3,7 +3,7 @@
<code>Markdown 我们这里选用了
<a href="https://github.com/sparksuite/simplemde-markdown-editor" target="_blank">simplemde-markdown-editor</a> ,简单的用vue封装了一下
<a target="_blank" href="https://segmentfault.com/a/1190000009762198#articleHeader14">
- 相关文章 </a>
+ 相关文章 </a>
</code>
<markdown-editor id="contentEditor" ref="contentEditor" v-model="content" :height="300" :zIndex="20"></markdown-editor>
@@ -16,26 +16,25 @@
<script>
import MarkdownEditor from '@/components/MarkdownEditor'
+const content = `
+**this is test**
+
22
+* vue
23
+* element
24
+* webpack
25
26
+## Simplemde
27
+`
28
29
export default {
30
name: 'markdown-demo',
31
components: { MarkdownEditor },
32
data() {
33
return {
- content: '## Simplemde',
34
+ content: content,
35
html: ''
36
}
37
},
- computed: {
- cachedViews() {
- return this.$store.state.app.cachedViews
- }
- },
- // deactivated() {
- // console.log(this.cachedViews.indexOf(this.$route.name))
- // if (this.cachedViews.indexOf(this.$route.name) < 0) {
- // this.$destroy()
38
- // },
39
methods: {
40
markdown2Html() {
41
import('showdown').then(showdown => {
src/views/components-demo/splitpane.vue
@@ -1,25 +1,26 @@
- <div class="components-container">
- <code>splitPane 如果你用过<a href="http://codepen.io/" target="_blank"> codepen</a>,<a href="https://jsfiddle.net/" target="_blank"> jsfiddle </a>就不会陌生了
+ <div class="components-container">
+ <code>splitPane 如果你用过
+ <a href="http://codepen.io/" target="_blank"> codepen</a>,
+ <a href="https://jsfiddle.net/" target="_blank"> jsfiddle </a>就不会陌生了
<a href="https://github.com/PanJiaChen/vue-split-pane" target='_blank'>项目地址</a>
- </code>
- <split-pane v-on:resize="resize" split="vertical">
- <template slot="paneL">
- <div class="left-container"></div>
- </template>
- <template slot="paneR">
- <split-pane split="horizontal">
- <div class="top-container"></div>
- <div class="bottom-container">
- </div>
- </split-pane>
+ <split-pane v-on:resize="resize" split="vertical">
+ <template slot="paneL">
+ <div class="left-container"></div>
+ </template>
+ <template slot="paneR">
+ <split-pane split="horizontal">
+ <div class="top-container"></div>
+ <div class="bottom-container"></div>
+ </split-pane>
+ </div>
src/views/components-demo/tinymce.vue
@@ -1,7 +1,7 @@
<code>公司做的后台主要是一个cms系统,公司也是以自媒体为核心的,所以富文本是后台很核心的功能。在选择富文本的过程中也走了不少的弯路,市面上常见的富文本都基本用过了,最终选择了Tinymce
- <a target="_blank" href="https://panjiachen.github.io/vue-element-admin-site/#/rich-editor">文档介绍</a>
+ <a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/#/rich-editor">文档介绍</a>
<div>
<tinymce :height="200" v-model="content"></tinymce>
src/views/dashboard/admin/components/BoxCard.vue
@@ -19,7 +19,7 @@
<el-progress :percentage="12"></el-progress>
<div class='progress-item'>
- <span>ESlint</span>
+ <span>ESLint</span>
<el-progress :percentage="100" status="success"></el-progress>
src/views/dashboard/admin/components/PieChart.vue
@@ -56,7 +56,7 @@ export default {
56
legend: {
57
left: 'center',
58
bottom: '10',
59
- data: ['industries', 'technology', 'forex', 'gold', 'forecasts']
+ data: ['Industries', 'Technology', 'Forex', 'Gold', 'Forecasts']
60
61
calculable: true,
62
series: [
@@ -67,11 +67,11 @@ export default {
67
radius: [15, 95],
68
center: ['50%', '38%'],
69
data: [
70
- { value: 320, name: 'industries' },
71
- { value: 240, name: 'technology' },
72
- { value: 149, name: 'forex' },
73
- { value: 100, name: 'gold' },
74
- { value: 59, name: 'forecasts' }
+ { value: 320, name: 'Industries' },
+ { value: 240, name: 'Technology' },
+ { value: 149, name: 'Forex' },
+ { value: 100, name: 'Gold' },
+ { value: 59, name: 'Forecasts' }
75
],
76
animationEasing: 'cubicInOut',
77
animationDuration: 2600
0 commit comments