App.vue 396 B

123456789101112131415161718
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. <portal-target name="notification-outlet"></portal-target>
  5. <portal-target name="notification-detail"></portal-target>
  6. <portal-target name="notification-search"></portal-target>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name:'App'
  12. }
  13. </script>
  14. <style lang="less">
  15. @import "./less/index.less";
  16. </style>