| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <el-container>
- 4444
- </el-container>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- components: {
- },
- computed: {
- },
- activated() {
- },
- created(){
- },
- mounted(){
- },
- methods: {
- },
- watch: {
- }
- }
- </script>
- <style scoped>
- .el-container {
- width: 100%;
- height:100%;
- }
- </style>
|