feat:first commit
This commit is contained in:
53
src/App.vue
Normal file
53
src/App.vue
Normal file
@@ -0,0 +1,53 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
mpType: 'app',
|
||||
onLaunch() {},
|
||||
onLoad() {},
|
||||
onShow() {},
|
||||
onHide() {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
|
||||
*::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/*每个页面公共css */
|
||||
.page_class {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background-color: #f4f4f4;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.rich_text,
|
||||
uni-rich-text {
|
||||
word-break: break-all;
|
||||
|
||||
ul,
|
||||
ol,
|
||||
blockquote,
|
||||
li {
|
||||
padding: revert;
|
||||
margin: revert;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table,
|
||||
th,
|
||||
td {
|
||||
border: 1px solid black;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user