UNPKG

476 BPlain TextView Raw
1<script>
2 export default {
3 created(){
4
5 }
6 }
7</script>
8
9<style>
10/* 每个页面都会引入的样式,可以理解为全局样式 */
11.container {
12 height: 100%;
13 display: flex;
14 flex-direction: column;
15 align-items: center;
16 justify-content: space-between;
17 padding: 200rpx 0;
18 box-sizing: border-box;
19}
20/* this rule will be remove */
21* {
22 transition: width 2s;
23 -moz-transition: width 2s;
24 -webkit-transition: width 2s;
25 -o-transition: width 2s;
26}
27</style>