mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 19:06:39 +08:00
17 lines
206 B
Vue
17 lines
206 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
#nprogress .bar {
|
|
background: #1989fa !important;
|
|
}
|
|
</style>
|
|
|