*.vue 中 module.exports={} 是什么写法? 大括号中可以定义那些方法
发布于 3 年前 作者 SpaceEmpire 6324 次浏览 最后一次编辑是 2 年前 来自 问答

<template> <div>页面列表-List</div> </template>

<script> module.exports = { ready: function () { } } </script>

回到顶部