logo
  • 教程列表
  • SO官方文檔
  • Vue 單個檔案元件
    • 示例 .vue 元件檔案
  1. StackOverflow 文件
  2. Vue.js 教程
  3. Vue 單個檔案元件
  4. 示例 .vue 元件檔案

示例 .vue 元件檔案

Created: November-22, 2018

<template>
  <div class="nice">Component {{title}}</div>
</template>

<script>
export default {
    data() {
        return {
            title: "awesome!"
        };
    }
}
</script>

<style>
.nice {
    background-color: red;
    font-size: 48px;
}
</style>
  • Vue 單個檔案元件

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明