0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vue CLI の簡単な使い方

Last updated at Posted at 2019-04-05

サーバー上で Vue CLI を使う簡単な方法です。

次が既にインストールされているとします。

$ vue --version
@vue/cli 4.5.15
$ yarn --version
1.22.5
  1. プロジェクトの作成
vue create proj01

Enter を入れていきます。

  1. フォルダーを移動して、サーバーの起動
cd proj01
yarn serve
  1. ブラウザーで、http://localhost:8080/ にアクセス
    vue_aa.png

  2. src/App.vue を改造

src/App.vue
<template>
  <div>
    こんにちは。<p />
    <blockquote>
    Nov/4/2021<p />
    </blockquote>
  </div>
</template>

<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>
  1. ブラウザーで、http://localhost:8080/ にアクセス
    vue_bb.png

  2. src/App.vue をもっと改造してみます。

src/App.vue
<template>
<div>
  <p class="message">メッセージ: {{ msg }}
</p>
<blockquote>
Apr/5/2019<p />
</blockquote>
</div>
</template>

<style>
.message { color: blue; }
</style>

<script>
export default {
  props: {
    msg: {
      type: String,
      default: '皆さん、こんにちは!'
    }
  }
}
</script>
  1. ブラウザーで、http://localhost:8080/ にアクセス
    vue_cc.png

  2. 更に改造して、テキストを入れれるようにします。
    参考ページ
    Vue.js を vue-cli を使ってシンプルにはじめてみる

src/App.vue
<template>
  <div>
    <p v-if="msg.length > 0">
      {{msg}}
    </p>
    <p v-else>
      no text
    </p>
<input type="text" v-model="msg">
<button @click="clear()">clear</button>
  </div>
</template>

<script>

export default {
  data () {
    return {
      msg: 'Hello World! Nov/4/2021'
    }
  },
  methods: {
    clear () {
      this.msg = ''
    }
  }
}
</script>

vue_dd.png

「これはテストです。」とキーイン

vue_ee.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?