美文网首页程序员
Vue.js 目录结构

Vue.js 目录结构

作者: InFatuated | 来源:发表于2020-08-10 13:23 被阅读0次

    Vue.js目录结构

    在VsCode中打开之前创建的vue目录,结构如下所示:


    目录解析


    在前面我们打开APP.vue文件,代码如下
    src/APP.vue:

    <!-- 展示模板 -->
    <template>
      <div id="app">
        <img src="./assets/logo.png">
        <hello></hello>
      </div>
    </template>
     
    <script>
    // 导入组件
    import Hello from './components/Hello'
     
    export default {
      name: 'app',
      components: {
        Hello
      }
    }
    </script>
    <!-- 样式代码 -->
    <style>
    #app {
      font-family: 'Avenir', Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      color: #2c3e50;
      margin-top: 60px;
    }
    </style>
    

    接下来我们可以尝试修改下初始化的项目,将Hello.vue修改为以下代码:
    src/components/Hello.vue

    <template>
      <div class="hello">
        <h1>{{ msg }}</h1>
      </div>
    </template>
     
    <script>
    export default {
      name: 'hello',
      data () {
        return {
          msg: '欢迎来到菜鸟教程!'
        }
      }
    }
    </script>
    

    重新打开页面http://localhost:8080/,一般会修改后自动刷新,显示效果如下:

    相关文章

      网友评论

        本文标题:Vue.js 目录结构

        本文链接:https://www.haomeiwen.com/subject/buywrktx.html