1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="app">
-
-
- 这里是404页面
-
-
- </view>
- </template>
- <script>
- export default {
- data() {
-
- return {
- }
- },
-
- onLoad(options = {}) {
- this.options = options;
- this.init(options);
- },
-
- methods: {
-
- init(options){
- console.log("init: ",options);
- },
- pageTo(path){
- uni.navigateTo(path);
- }
- },
-
- watch:{
-
- },
-
- computed:{
-
- }
- }
- </script>
- <style lang="scss" scoped>
-
-
- </style>
|