@@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>home</title>
+ <link rel="icon" href="/favicon.ico" />
+ <title>Caner</title>
</head>
<body>
<div id="app"></div>
@@ -389,6 +389,7 @@ const pressureOption = {
}
onMounted(() => {
+ document.title = 'ehcart速度计面板'
const dom = document.getElementById('chartd') as HTMLElement
const dom2 = document.getElementById('charts') as HTMLElement
chartd = echarts.init(dom)
@@ -231,6 +231,7 @@ function changeOption(v, option) {
+ document.title = 'canvas 画图'
const canvas = document.getElementById('CANVAS')
drawCanvas._init({
canvas,
@@ -7,6 +7,7 @@
import { onMounted } from 'vue'
import RichEdit from './component/editeDemo.vue'
+ document.title = '富文本编辑器'
const isIOS = !!navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)
const isAndroid = navigator.userAgent.includes('Android') || navigator.userAgent.includes('Linux') // g
if (isIOS || isAndroid) {
@@ -18,6 +18,7 @@ const timer = setInterval(() => {
}, 1000)
+ document.title = '二维动态导向'
@@ -121,6 +121,7 @@ const intCanvas = () => {
+ document.title = '多人在线画板'
intCanvas()
nextTick(() => {
socket.connect()
@@ -301,7 +301,10 @@ watchEffect(() => {
})
// 生命周期
-onMounted(() => getTunnelPath())
+onMounted(() => {
+ document.title = '瓦片图缩放'
+ getTunnelPath()
+})
</script>
<style lang="scss" scoped>
#apps {
@@ -1,3 +0,0 @@
-<template>
- <div>3D测试</div>
-</template>
@@ -1,10 +0,0 @@
-import { RouteRecordRaw } from 'vue-router'
-
-export default {
- path: '/test',
- meta: {
- authorize: true
- },
- component: () => import('./index.vue'),
- children: []
-} as RouteRecordRaw