index.js 369 B

1234567891011121314151617181920212223
  1. $(function(){
  2. new Vue({
  3. el: "#main",
  4. data: {
  5. yuYue:{
  6. hospital:''
  7. }
  8. },
  9. mounted: function() {
  10. $("#myCarousel").carousel('cycle')
  11. },
  12. methods: {
  13. setYiYuan: function(value){
  14. this.yuYue.hospital = value
  15. }
  16. }
  17. })
  18. })