空Vue文件添加内容
parent
64acbbab12
commit
56785997ec
|
|
@ -7,29 +7,27 @@
|
|||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"files.eol": "\n",
|
||||
"search.exclude": {
|
||||
"**/node_modules": true,
|
||||
"**/.DS_Store": true,
|
||||
"**/.git": true,
|
||||
"**/.gitignore": true,
|
||||
"**/.idea": true,
|
||||
"**/.svn": true,
|
||||
"**/.vscode": false,
|
||||
"**/.yarn": true,
|
||||
"**/*.log": true,
|
||||
"**/*.log*": true,
|
||||
"**/bower_components": true,
|
||||
"**/dist": true,
|
||||
"**/elehukouben": true,
|
||||
"**/.git": true,
|
||||
"**/.gitignore": true,
|
||||
"**/.svn": true,
|
||||
"**/.DS_Store": true,
|
||||
"**/.idea": true,
|
||||
"**/.vscode": false,
|
||||
"**/yarn.lock": true,
|
||||
"**/node_modules": true,
|
||||
"**/tmp": true,
|
||||
"out": true,
|
||||
"dist": true,
|
||||
"node_modules": true,
|
||||
"**/yarn.lock": true,
|
||||
"CHANGELOG.md": true,
|
||||
"dist": true,
|
||||
"examples": true,
|
||||
"out": true,
|
||||
"res": true,
|
||||
"screenshots": true,
|
||||
"yarn-error.log": true,
|
||||
"**/.yarn": true
|
||||
"yarn-error.log": true
|
||||
},
|
||||
"files.exclude": {
|
||||
"**/.cache": true,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -1,15 +1,11 @@
|
|||
<template>
|
||||
<div class="p-4">
|
||||
<Mars></Mars>
|
||||
<!-- <Mars></Mars> -->
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { onUnmounted } from 'vue';
|
||||
import Mars from '../../../mars/views/index.vue'
|
||||
// import Mars from '../../../mars/views/index.vue'
|
||||
|
||||
|
||||
|
||||
onUnmounted(()=>{
|
||||
|
||||
})
|
||||
</script>
|
||||
onUnmounted(() => {});
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
const { string } = require("vue-types")
|
||||
const { string } = require('vue-types');
|
||||
|
||||
|
||||
const handleFindObjectArrayItem = (array:Array<Object>,key:string,val:string):Object|null=>{
|
||||
let obj:Object | null = null;
|
||||
for(let i:number = 0;i<array.length;i++)
|
||||
{
|
||||
if(array[i][key] == val)
|
||||
{
|
||||
const handleFindObjectArrayItem = (
|
||||
array: Array<Object>,
|
||||
key: string,
|
||||
val: string,
|
||||
): Object | null => {
|
||||
let obj: Object | null = null;
|
||||
for (let i: number = 0; i < array.length; i++) {
|
||||
if (array[i][key] == val) {
|
||||
obj = array[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
<template>
|
||||
<div> </div>
|
||||
</template>
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
);
|
||||
|
||||
// 初始数据
|
||||
const pageActiveName = 'tab01';
|
||||
let pageActiveName = 'tab01';
|
||||
// 左侧树形设置tree
|
||||
const colslist = ref([]);
|
||||
// 列表设置tree
|
||||
|
|
|
|||
Loading…
Reference in New Issue