update link
This commit is contained in:
parent
a5b445cbf8
commit
7e541c415e
@ -1,6 +1,6 @@
|
|||||||
# vue3-element-admin
|
# vue3-element-admin
|
||||||
|
|
||||||
这个模板使用了最新的 vue3 和 element-plus UI 框架,vite 构建工具、pinia 状态管理、vue-router 路由管理、mockjs 数据模拟。功能从 Vue Element Admin 移植而来,详细使用可以参考[该文档](https://panjiachen.github.io/vue-element-admin-site/zh/guide/essentials/router-and-nav.html)。
|
这个模板使用了最新的 vue3 和 element-plus UI 框架,vite 构建工具、pinia 状态管理、vue-router 路由管理、mockjs 数据模拟,并集成了 typescript。功能从 Vue Element Admin 移植而来,详细使用可以参考[该文档](https://vue3-element-admin-site.midfar.com/zh/guide/essentials/router-and-nav.html)。
|
||||||
|
|
||||||
# 在线示例
|
# 在线示例
|
||||||
|
|
||||||
|
@ -525,7 +525,7 @@ export const asyncRoutes = [
|
|||||||
component: 'layout/Layout',
|
component: 'layout/Layout',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: 'https://github.com/PanJiaChen/vue-element-admin',
|
path: 'https://github.com/midfar/vue3-element-admin',
|
||||||
meta: { title: 'External Link', icon: 'link' }
|
meta: { title: 'External Link', icon: 'link' }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<a href="https://github.com/PanJiaChen/vue-element-admin" target="_blank" class="github-corner" aria-label="View source on Github">
|
<a href="https://github.com/midfar/vue3-element-admin" target="_blank" class="github-corner" aria-label="View source on Github">
|
||||||
<svg
|
<svg
|
||||||
width="80"
|
width="80"
|
||||||
height="80"
|
height="80"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// doc: https://panjiachen.github.io/vue-element-admin-site/feature/component/svg-icon.html#usage
|
// doc: https://vue3-element-admin-site.midfar.com/feature/component/svg-icon.html#usage
|
||||||
import { isExternal } from '@/utils/validate';
|
import { isExternal } from '@/utils/validate';
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
/**
|
/**
|
||||||
* docs:
|
* docs:
|
||||||
* https://panjiachen.github.io/vue-element-admin-site/feature/component/rich-editor.html#tinymce
|
* https://vue3-element-admin-site.midfar.com/feature/component/rich-editor.html#tinymce
|
||||||
*/
|
*/
|
||||||
import editorImage from './components/EditorImage';
|
import editorImage from './components/EditorImage';
|
||||||
import plugins from './plugins';
|
import plugins from './plugins';
|
||||||
|
@ -34,10 +34,10 @@
|
|||||||
<router-link to="/">
|
<router-link to="/">
|
||||||
<el-dropdown-item>Dashboard</el-dropdown-item>
|
<el-dropdown-item>Dashboard</el-dropdown-item>
|
||||||
</router-link>
|
</router-link>
|
||||||
<a target="_blank" href="https://github.com/PanJiaChen/vue-element-admin/">
|
<a target="_blank" href="https://github.com/midfar/vue3-element-admin">
|
||||||
<el-dropdown-item>Github</el-dropdown-item>
|
<el-dropdown-item>Github</el-dropdown-item>
|
||||||
</a>
|
</a>
|
||||||
<a target="_blank" href="https://panjiachen.github.io/vue-element-admin-site/#/">
|
<a target="_blank" href="https://vue3-element-admin-site.midfar.com/">
|
||||||
<el-dropdown-item>Docs</el-dropdown-item>
|
<el-dropdown-item>Docs</el-dropdown-item>
|
||||||
</a>
|
</a>
|
||||||
<el-dropdown-item divided @click="logout">
|
<el-dropdown-item divided @click="logout">
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="components-container">
|
<div class="components-container">
|
||||||
<aside>
|
<aside>
|
||||||
Rich text is a core feature of the management backend, but at the same time it is a place with lots of pits. In the process of selecting rich texts, I also took a lot of detours. The common rich texts on the market have been basically used, and I finally chose Tinymce. See the more detailed rich text comparison and introduction.
|
Rich text is a core feature of the management backend, but at the same time it is a place with lots of pits. In the process of selecting rich texts, I also took a lot of detours. The common rich texts on the market have been basically used, and I finally chose Tinymce. See the more detailed rich text comparison and introduction.
|
||||||
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/feature/component/rich-editor.html">Documentation</a>
|
<a target="_blank" class="link-type" href="https://vue3-element-admin-site.midfar.com/feature/component/rich-editor.html">Documentation</a>
|
||||||
</aside>
|
</aside>
|
||||||
<div>
|
<div>
|
||||||
<tinymce v-model="content" :height="300" />
|
<tinymce v-model="content" :height="300" />
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container documentation-container">
|
<div class="app-container documentation-container">
|
||||||
<a class="document-btn" target="_blank"
|
<a class="document-btn" target="_blank"
|
||||||
href="https://panjiachen.github.io/vue-element-admin-site/zh/guide/essentials/router-and-nav.html">国内文档</a>
|
href="https://vue3-element-admin-site.midfar.com/zh/guide/essentials/router-and-nav.html">国内文档</a>
|
||||||
<a class="document-btn" target="_blank"
|
<a class="document-btn" target="_blank"
|
||||||
href="https://github.com/midfar/vue3-element-admin">Github 仓库</a>
|
href="https://github.com/midfar/vue3-element-admin">Github 仓库</a>
|
||||||
<dropdown-menu class="document-btn" :items="articleList" title="系列文章" />
|
<dropdown-menu class="document-btn" :items="articleList" title="系列文章" />
|
||||||
<!-- <a class="document-btn" target="_blank" href="https://panjiachen.github.io/vue-element-admin-site/zh/job/">内推招聘</a> -->
|
<!-- <a class="document-btn" target="_blank" href="https://vue3-element-admin-site.midfar.com/zh/job/">内推招聘</a> -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<h3>Please click the bug icon in the upper right corner</h3>
|
<h3>Please click the bug icon in the upper right corner</h3>
|
||||||
<aside>
|
<aside>
|
||||||
Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.
|
Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.
|
||||||
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/error.html">
|
<a target="_blank" class="link-type" href="https://vue3-element-admin-site.midfar.com/guide/advanced/error.html">
|
||||||
Document introduction
|
Document introduction
|
||||||
</a>
|
</a>
|
||||||
</aside>
|
</aside>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
effect, you can use a browser caching scheme such as localStorage. Or do not use keep-alive include to cache all
|
effect, you can use a browser caching scheme such as localStorage. Or do not use keep-alive include to cache all
|
||||||
pages directly. See details
|
pages directly. See details
|
||||||
<a
|
<a
|
||||||
href="https://panjiachen.github.io/vue-element-admin-site/guide/essentials/tags-view.html"
|
href="https://vue3-element-admin-site.midfar.com/guide/essentials/tags-view.html"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>Document</a>
|
>Document</a>
|
||||||
</aside>
|
</aside>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<el-button :loading="downloadLoading" style="margin:0 0 0 20px;" type="primary" :icon="IconDocument" @click="handleDownload">
|
<el-button :loading="downloadLoading" style="margin:0 0 0 20px;" type="primary" :icon="IconDocument" @click="handleDownload">
|
||||||
Export Excel
|
Export Excel
|
||||||
</el-button>
|
</el-button>
|
||||||
<a href="https://panjiachen.github.io/vue-element-admin-site/feature/component/excel.html" target="_blank" style="margin-left:15px;">
|
<a href="https://vue3-element-admin-site.midfar.com/feature/component/excel.html" target="_blank" style="margin-left:15px;">
|
||||||
<el-tag type="info" size="large">Documentation</el-tag>
|
<el-tag type="info" size="large">Documentation</el-tag>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="icons-container">
|
<div class="icons-container">
|
||||||
<aside>
|
<aside>
|
||||||
<a href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/icon.html" target="_blank">Add and use
|
<a href="https://vue3-element-admin-site.midfar.com/guide/advanced/icon.html" target="_blank">Add and use
|
||||||
</a>
|
</a>
|
||||||
</aside>
|
</aside>
|
||||||
<el-tabs type="border-card">
|
<el-tabs type="border-card">
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: Cherry 2858937488@qq.com
|
* @Author: Cherry 2858937488@qq.com
|
||||||
* @Date: 2023-03-14 10:40:55
|
* @Date: 2023-03-14 10:40:55
|
||||||
* @LastEditors: Cherry 2858937488@qq.com
|
* @LastEditors: Cherry 2858937488@qq.com
|
||||||
* @LastEditTime: 2023-03-16 14:30:55
|
* @LastEditTime: 2023-03-16 13:47:40
|
||||||
* @FilePath: \vue3-admin\vue3-element-admin\src\views\mydemo\WebSocketDemo.vue
|
* @FilePath: \vue3-admin\vue3-element-admin\src\views\mydemo\WebSocketDemo.vue
|
||||||
* @Description: websocket
|
* @Description: websocket
|
||||||
-->
|
-->
|
||||||
@ -81,7 +81,7 @@
|
|||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import Socket from '@/utils/webSocket.js';
|
import Socket from '@/utils/websocket.js';
|
||||||
import webSocketStore from '@/store/modules/webSocket';
|
import webSocketStore from '@/store/modules/webSocket';
|
||||||
import userStore from '@/store/modules/user';
|
import userStore from '@/store/modules/user';
|
||||||
import { ElMessage } from 'element-plus';
|
import { ElMessage } from 'element-plus';
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-card class="box-card">
|
<el-card class="box-card">
|
||||||
<template #header>
|
<template #header>
|
||||||
<a class="link-type link-title" target="_blank" href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/theme.html">
|
<a class="link-type link-title" target="_blank" href="https://vue3-element-admin-site.midfar.com/guide/advanced/theme.html">
|
||||||
Theme documentation
|
Theme documentation
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user