*.vue 中 module.exports={} 是什么写法? 大括号中可以定义那些方法
<template> <div>页面列表-List</div> </template>
<script> module.exports = { ready: function () { } } </script>
<template> <div>页面列表-List</div> </template>
<script> module.exports = { ready: function () { } } </script>