index.vue 220 B

12345678910111213
  1. <template>
  2. <error-page :code="403" desc="您无权访问此页面"></error-page>
  3. </template>
  4. <script>
  5. import ErrorPage from '@/components/error-page/index';
  6. export default {
  7. components: {
  8. ErrorPage
  9. }
  10. };
  11. </script>