vue 未命名

107 阅读1分钟
基础页面
<template>
    <div>基础页面</div>
</template>

<script>
export default {
    data() {
        return {
            
        }
    },
    created() {
        
    },
    methods: {
        
    }
}
</script>

<style scoped></style>