mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-03 13:44:47 +08:00
perf: view page add name
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
<script lang="ts">
|
||||
import { ref } from "vue";
|
||||
export default {
|
||||
name: "reButton",
|
||||
setup() {
|
||||
const url = ref(
|
||||
process.env.NODE_ENV === "production"
|
||||
|
||||
@@ -22,6 +22,7 @@ import basic from "./basic.vue";
|
||||
import menuGroup from "./menuGroup.vue";
|
||||
import menuDynamic from "./menuDynamic.vue";
|
||||
export default {
|
||||
name: "reContextmenu",
|
||||
components: {
|
||||
basic,
|
||||
menuGroup,
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
<script lang="ts">
|
||||
import { ReNormalCountTo, ReboundCountTo } from "/@/components/ReCountTo";
|
||||
export default {
|
||||
name: "reCountTo",
|
||||
components: {
|
||||
ReNormalCountTo,
|
||||
ReboundCountTo
|
||||
|
||||
@@ -15,6 +15,7 @@ import Cropper from "/@/components/ReCropper";
|
||||
import img from "./picture.jpeg";
|
||||
|
||||
export default {
|
||||
name: "reCropping",
|
||||
components: {
|
||||
Cropper
|
||||
},
|
||||
|
||||
@@ -76,6 +76,7 @@
|
||||
import draggable from "vuedraggable/src/vuedraggable";
|
||||
import { reactive, toRefs, onMounted } from "vue";
|
||||
export default {
|
||||
name: "reDraggable",
|
||||
components: { draggable },
|
||||
setup() {
|
||||
const myArray = reactive({
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
<script lang="ts">
|
||||
import { Amap } from "/@/components/ReMap";
|
||||
export default {
|
||||
name: "reMap",
|
||||
components: {
|
||||
Amap
|
||||
},
|
||||
|
||||
@@ -66,6 +66,7 @@ import { templateRef } from "@vueuse/core";
|
||||
|
||||
import SeamlessScroll from "/@/components/ReSeamlessScroll";
|
||||
export default {
|
||||
name: "reSeamlessScroll",
|
||||
components: {
|
||||
SeamlessScroll
|
||||
},
|
||||
|
||||
@@ -27,6 +27,7 @@ import { ref } from "vue";
|
||||
import Selector from "/@/components/ReSelector";
|
||||
|
||||
export default {
|
||||
name: "reSelector",
|
||||
components: { Selector },
|
||||
setup() {
|
||||
let selectRange = ref(null);
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
import splitpane, { ContextProps } from "/@/components/ReSplitPane";
|
||||
import { reactive } from "vue";
|
||||
export default {
|
||||
name: "split",
|
||||
name: "reSplitPane",
|
||||
components: {
|
||||
splitpane
|
||||
},
|
||||
|
||||
@@ -11,6 +11,7 @@ import screenShot from "xgplayer/dist/controls/screenShot";
|
||||
import { deviceDetection } from "/@/utils/deviceDetection";
|
||||
|
||||
export default {
|
||||
name: "reVideo",
|
||||
setup() {
|
||||
onMounted(() => {
|
||||
new Player({
|
||||
|
||||
@@ -10,7 +10,7 @@ import { onMounted, onBeforeUnmount, ref, reactive } from "vue";
|
||||
import WangEditor from "wangeditor";
|
||||
|
||||
export default {
|
||||
name: "editor",
|
||||
name: "reEditor",
|
||||
setup() {
|
||||
const editor = ref();
|
||||
const content = reactive({
|
||||
|
||||
@@ -31,6 +31,7 @@ import { toLogicflowData } from "/@/components/ReFlowChart/src/adpterForTurbo";
|
||||
import { BpmnNode } from "/@/components/ReFlowChart/src/config";
|
||||
import demoData from "./dataTurbo.json";
|
||||
export default {
|
||||
name: "reFlowChart",
|
||||
components: { NodePanel, Control, DataDialog },
|
||||
setup() {
|
||||
// eslint-disable-next-line no-undef
|
||||
|
||||
@@ -6,7 +6,7 @@ import { defineComponent, unref } from "vue";
|
||||
import { useRouter } from "vue-router";
|
||||
|
||||
export default defineComponent({
|
||||
name: "Redirect",
|
||||
name: "redirect",
|
||||
setup() {
|
||||
const { currentRoute, replace } = useRouter();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user