Error.vue 396 Bytes
Newer Older
wanli's avatar
wanli committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<template>
  <div class="error">
    <h1>This is an about page error</h1>
    <Button type="primary">Primary</Button>

    <Icon type="line-chart" />
  </div>
</template>

<script>
  import {
    Button,
    Icon
  } from 'ant-design-vue';
  export default {
    components: {
      Button,
      Icon
    }
  }
</script>
<style lang="less">
@import url('../assets/less/bundle.less');
</style>