fix: px
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
taolin
2022-07-22 16:08:29 +08:00
parent 34499b7ffb
commit 71426b5734
6 changed files with 565 additions and 989 deletions

View File

@@ -12,8 +12,6 @@ export default defineComponent({});
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

View File

@@ -1,52 +0,0 @@
<script setup lang="ts">
import { ref } from 'vue'
defineProps<{ msg: string }>()
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<p>
Recommended IDE setup:
<a href="https://code.visualstudio.com/" target="_blank">VS Code</a>
+
<a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
</p>
<p>See <code>README.md</code> for more information.</p>
<p>
<a href="https://vitejs.dev/guide/features.html" target="_blank">
Vite Docs
</a>
|
<a href="https://v3.vuejs.org/" target="_blank">Vue 3 Docs</a>
</p>
<button type="button" @click="count++">count is: {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test hot module replacement.
</p>
</template>
<style scoped>
a {
color: #42b983;
}
label {
margin: 0 0.5em;
font-weight: bold;
}
code {
background-color: #eee;
padding: 2px 4px;
border-radius: 4px;
color: #304455;
}
</style>

View File

@@ -6,6 +6,7 @@ import "nprogress/nprogress.css"; // progress bar style
NProgress.configure({ easing: "ease", speed: 500, showSpinner: false });
NProgress.inc(0.2);
// End
import Home from "../views/Home.vue";
const routes: Array<RouteRecordRaw> = [
{

View File

@@ -1,9 +1,5 @@
<template>
<div>
<el-button type="primary" @click="$router.push('/about')"
>ElementUI</el-button
>
</div>
<div></div>
</template>
<script>