1234567891011121314151617181920212223242526 |
- <template>
- <view>
- <button type="default" @click="goPage">跳转</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods:{
- goPage(){
- uni.navigateTo({
- url:'../user/cart/immediately'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|