22 lines
285 B
Vue
22 lines
285 B
Vue
<template>
|
|
<body>
|
|
<router-view></router-view>
|
|
</body>
|
|
</template>
|
|
|
|
|
|
<style>
|
|
|
|
strong {
|
|
font-weight: bold !important;
|
|
}
|
|
.nodata {
|
|
width: 100%;
|
|
min-height: 300px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #999;
|
|
font-size: 15px;
|
|
}
|
|
</style> |