Move element-ui components to the separate folder

This commit is contained in:
Maxim Filippov 2019-11-18 16:29:39 +09:00
parent 0c6c51bbcc
commit fc017e6032
53 changed files with 17 additions and 17 deletions

View file

@ -1,5 +1,5 @@
import Vue from 'vue' import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg组件 import SvgIcon from '@/components/element-ui/SvgIcon'// svg组件
// register globally // register globally
Vue.component('svg-icon', SvgIcon) Vue.component('svg-icon', SvgIcon)

View file

@ -104,7 +104,7 @@ export default {
}, },
components: { components: {
documentation: 'Documentation', documentation: 'Documentation',
dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/Dropzone.', dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/element-ui/Dropzone.',
stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.', stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.',
backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner', backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner',
backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally', backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally',

View file

@ -95,7 +95,7 @@ export default {
}, },
components: { components: {
documentation: 'Documentación', documentation: 'Documentación',
dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/Dropzone.', dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/element-ui/Dropzone.',
stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.', stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.',
backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner', backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner',
backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally', backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally',

View file

@ -96,7 +96,7 @@ export default {
}, },
components: { components: {
documentation: 'Documentacion', documentation: 'Documentacion',
dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/Dropzone.', dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/element-ui/Dropzone.',
stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.', stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.',
backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner', backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner',
backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally', backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally',

View file

@ -95,7 +95,7 @@ export default {
}, },
components: { components: {
documentation: '文档', documentation: '文档',
dropzoneTips: '由于我司业务有特殊需求,而且要传七牛 所以没用第三方,选择了自己封装。代码非常的简单,具体代码你可以在这里看到 @/components/Dropzone', dropzoneTips: '由于我司业务有特殊需求,而且要传七牛 所以没用第三方,选择了自己封装。代码非常的简单,具体代码你可以在这里看到 @/components/element-ui/Dropzone',
stickyTips: '当页面滚动到预设的位置会吸附在顶部', stickyTips: '当页面滚动到预设的位置会吸附在顶部',
backToTopTips1: '页面滚动到指定位置会在右下角出现返回顶部按钮', backToTopTips1: '页面滚动到指定位置会在右下角出现返回顶部按钮',
backToTopTips2: '可自定义按钮的样式、show/hide、出现的高度、返回的位置 如需文字提示可在外部使用Element的el-tooltip元素', backToTopTips2: '可自定义按钮的样式、show/hide、出现的高度、返回的位置 如需文字提示可在外部使用Element的el-tooltip元素',

View file

@ -5,7 +5,7 @@
</template> </template>
<script> <script>
import Chart from '@/components/Charts/keyboard' import Chart from '@/components/element-ui/Charts/keyboard'
export default { export default {
name: 'KeyboardChart', name: 'KeyboardChart',

View file

@ -5,7 +5,7 @@
</template> </template>
<script> <script>
import Chart from '@/components/Charts/lineMarker' import Chart from '@/components/element-ui/Charts/lineMarker'
export default { export default {
name: 'LineChart', name: 'LineChart',

View file

@ -5,7 +5,7 @@
</template> </template>
<script> <script>
import Chart from '@/components/Charts/mixChart' import Chart from '@/components/element-ui/Charts/mixChart'
export default { export default {
name: 'MixChart', name: 'MixChart',

View file

@ -28,8 +28,8 @@
<script> <script>
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import PanThumb from '@/components/PanThumb' import PanThumb from '@/components/element-ui/PanThumb'
import Mallki from '@/components/TextHoverEffect/Mallki' import Mallki from '@/components/element-ui/TextHoverEffect/Mallki'
export default { export default {
components: { PanThumb, Mallki }, components: { PanThumb, Mallki },

View file

@ -43,7 +43,7 @@
</template> </template>
<script> <script>
import GithubCorner from '@/components/GithubCorner' import GithubCorner from '@/components/element-ui/GithubCorner'
import PanelGroup from './components/PanelGroup' import PanelGroup from './components/PanelGroup'
import LineChart from './components/LineChart' import LineChart from './components/LineChart'
import RaddarChart from './components/RaddarChart' import RaddarChart from './components/RaddarChart'

View file

@ -18,8 +18,8 @@
<script> <script>
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import PanThumb from '@/components/PanThumb' import PanThumb from '@/components/element-ui/PanThumb'
import GithubCorner from '@/components/GithubCorner' import GithubCorner from '@/components/element-ui/GithubCorner'
export default { export default {
name: 'DashboardEditor', name: 'DashboardEditor',

View file

@ -7,7 +7,7 @@
</div> </div>
</template> </template>
<script> <script>
import DropdownMenu from '@/components/Share/dropdownMenu' import DropdownMenu from '@/components/element-ui/Share/dropdownMenu'
export default { export default {
name: 'Documentation', name: 'Documentation',

View file

@ -18,7 +18,7 @@
<script> <script>
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import Hamburger from '@/components/Hamburger' import Hamburger from '@/components/element-ui/Hamburger'
export default { export default {
components: { components: {

View file

@ -26,7 +26,7 @@
</template> </template>
<script> <script>
import ScrollPane from '@/components/ScrollPane' import ScrollPane from '@/components/element-ui/ScrollPane'
import { generateTitle } from '@/utils/i18n' import { generateTitle } from '@/utils/i18n'
import path from 'path' import path from 'path'

View file

@ -49,7 +49,7 @@
</template> </template>
<script> <script>
import SvgIcon from '@/components/SvgIcon' import SvgIcon from '@/components/element-ui/SvgIcon'
import localforage from 'localforage' import localforage from 'localforage'
import _ from 'lodash' import _ from 'lodash'
import i18n from '@/lang' import i18n from '@/lang'