vue : 项目起手式 - router组件通用模板
每次新建文件都要找来找去,麻烦,干脆贴到这里好了。
<template> <div id="page"> </div> </template> <script> export default { name: 'page', data(){ return { } } } </script> <style scoped> #page{ } </style>
以上。
posted on 2019-03-23 17:57 fox_charon 阅读(422) 评论(0) 编辑 收藏 举报