12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <p class="page-container">404 page not found</p>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- },
- mounted() {
- },
- create() {
- },
- activated() {
- },
- computed: {
- },
- watch: {
- '$route'(to, from) {
- console.log(from.path)
- console.log(to.path)
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .page-container {
- font-size: 20px;
- text-align: center;
- color: rgb(192, 204, 218);
- }
- </style>
|