绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
不能在每一个vue文件中进行独立的控制么
2019-08-16 10:55:03

[Vue warn]: Cannot find element: #indexTop ;不能在每一个vue文件中进行独立的控制么

项目是用vue-cli生成的,然后在webstrom打开

index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <base href="src/assets/">
    <meta charset="utf-8">
    <title>fuqing_studio</title>
  </head>
  <body>
    <div id="app"></div>
    <script src="/dist/build.js"></script>
    <style>
      @import "css/base.css";
      @import "css/patient_education.css";
      @import "css/swiper.min.css";
      @import "css/mine.css";
    </style>
  </body>
</html>
main.js

import Vue from 'vue'
import VueRouter from 'vue-router'
import Index from './component/indexTop.vue'

new Vue({
  render: h => h(Index),
}).$mount('#app')

我希望进去的页面是首页顶部的轮播图<template>

  <div id="indexTop">
    <div class="swiper-container">
      <div class="swiper-wrapper">
        <div v-for="item in banners" @click="jumpUrl($index)" class="swiper-slide img"><img src="{{item.path}}" alt=""></div>
      </div>
      <div class="swiper-pagination"></div>
    </div>
  </div>
</template>

<script>

  import Vue from 'vue'
  import axios from 'axios'

  Vue.prototype.$http = axios
   new Vue({
      data:{
        banners:{ },
      },
      methods: {
        jumpUrl: function(index){

        }
      },
      mounted: function () {
        this.$nextTick(function () {
          var self = this;
          axios.get('http://localhost:66/studio/banner')
            .then(function(res){
              console.log(res.data);
              self.banners = res.data
            })
            .catch(function(err){
              console.log(err);
            })
        });
      }
    }).$mount('#indexTop')
</script>

然后就报错了,改了好半天都不行

分享好友

分享这个小栈给你的朋友们,一起进步吧。

应用开发
创建时间:2020-06-17 15:31:04
应用软件开发是指使用程序语言C#、java、 c++、vb等语言编写,主要是用于商业、生活应用的软件的开发。
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

技术专家

查看更多
  • 栈栈
    专家
戳我,来吐槽~