<template> <div class="test"> test </div> </template> <script> export default { name: "Test", props: [‘‘], components: {}, data() { return {}; }, beforeCreate() {}, created() {}, beforeMount() {}, mounted() {}, beforeUpdate() {}, updated() {}, computed: {}, watch: {}, methods: {}, filters: {}, beforeDestroy() {}, destroyed() {} }; </script> <style lang="scss" scoped> .test { width: 100%; height: 100%; } </style>
原文:https://www.cnblogs.com/wanghao-boke/p/14765347.html