init project

This commit is contained in:
2022-06-27 11:24:02 +08:00
parent 8798ab81de
commit 24c6e2e9a8
442 changed files with 45502 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<template>
<router-view />
</template>

View File

@@ -0,0 +1,15 @@
<template>
<div style="padding:30px;">
<el-input v-model="input" placeholder="请输入内容" />
</div>
</template>
<script>
export default {
name: 'Test',
data() {
return {
input: ''
}
}
}
</script>

View File

@@ -0,0 +1,5 @@
<template>
<div style="padding:30px;">
<el-alert :closable="false" title="三级菜单2" type="success" />
</div>
</template>

View File

@@ -0,0 +1,5 @@
<template>
<div style="padding:30px;">
<el-alert :closable="false" title="二级菜单" />
</div>
</template>