onlineInformationBtn.vue 333 B

12345678910111213141516171819202122232425
  1. <template>
  2. <span @click="btnClick"> 在线咨询 </span>
  3. </template>
  4. <script>
  5. export default {
  6. name: "onlineInformation",
  7. props: {
  8. myType: {
  9. type: String,
  10. default: 'kaoshi'
  11. }
  12. },
  13. methods: {
  14. btnClick() {
  15. this.$router.push({name: 'courseware'});
  16. }
  17. }
  18. }
  19. </script>
  20. <style scoped>
  21. </style>