12345678910111213141516171819202122232425 |
- <template>
- <span @click="btnClick"> 在线咨询 </span>
- </template>
- <script>
- export default {
- name: "onlineInformation",
- props: {
- myType: {
- type: String,
- default: 'kaoshi'
- }
- },
- methods: {
- btnClick() {
- this.$router.push({name: 'courseware'});
- }
- }
- }
- </script>
- <style scoped>
- </style>
|