Files
jiace-web/src/App.vue

32 lines
465 B
Vue
Raw Normal View History

2021-08-02 09:31:25 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
2021-08-02 14:40:12 +08:00
export default {
name: 'App'
};
2021-08-02 09:31:25 +08:00
</script>
2021-08-02 14:40:12 +08:00
<style lang="scss">
.content {
width: 1400px;
margin: 0 auto;
}
2021-08-04 08:39:11 +08:00
.p0-100 {
padding: 0 100px;
}
.text_hidden_one {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
// overflow: hidden;
// display: -webkit-box;
// -webkit-line-clamp: 1;
// -webkit-box-orient: vertical;
// word-break: break-all;
}
2021-08-02 14:40:12 +08:00
</style>