Slog13_支配vue框架模版語法之v-show

  • ArthurSlog
  • SLog-13
  • Year·1
  • Guangzhou·China
  • July 17th 2018

關注微信公衆號「ArthurSlog」

堅持是最好的承諾html


開發環境MacOS(High Sierra 10.13.5)

須要的信息和信息源:

  1. v-text
  2. v-html
  3. v-show
  4. v-if
  5. v-else
  6. v-else-if
  7. v-for
  8. v-on
  9. v-bind
  10. v-model
  11. v-pre
  12. v-cload
  13. v-once
  • vue.js 的模版指令,與編程語言的 「關鍵字」 或者 「保留字」 有點類似,例如 if(判斷語句關鍵字)、for(循環語句關鍵字)

開始編碼

  • 首先,搭起靜態服務器,先切換至桌面路徑
cd ~/Desktop
  • 建立一個文件夾node_vue_directive_learningload
mkdir node_vue_directive_learningload
  • 切換路徑到新建的文件夾下
cd node_vue_directive_learningload
  • 使用npm初始化node環境,一路enter鍵完成初始化
npm init
  • 使用npm安裝koa和koa-static
sudo npm install koa koa-static

index.jsvue

const serve = require('koa-static');
const Koa = require('koa');
const app = new Koa();

// $ GET /package.json
app.use(serve('.'));

app.listen(3000);

console.log('listening on port 3000');

index.htmlnode

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>ArthurSlog</title>
</head>

<body>

    <h1>The static web server by ArthurSlog</h1>

</body>

</html>
  • 接下來,咱們來根據使用場景,來編寫 vue.js 模版指令代碼

v-show.htmlgit

<!DOCTYPE html>
<html>
    <head>
    <meta charset="utf-8">
    <!-- 開發環境版本,包含了有幫助的命令行警告 -->
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <title>ArthurSlog</title>
    </head>
    <body>
        <div id="app">
            <h1 v-show="ok">Hello ArthurSlog, "ok" is true and "no" is false</h1>
            <h1 v-show="no">Hello ArthurSlog, "no" is false</h1>
        </div>
        <script>
        new Vue({
            el: '#app',
            data: {
                ok: true,
                no: false
            }
        })
        </script>
    </body>
</html>
  • 如今你能夠打開瀏覽器,在地址欄輸入 127.0.0.1:3000/v-show.html,你會看到:「ok」 的值與 「show」 相關聯,當 「ok」的值 等於 「true」 時,「show」 的值也就等於 「true」,因此文字會顯示出來;當 「no」 的值與 「show」 相關聯,當 「no」的值 等於 「false」 時,「show」 的值也就等於 「false」,因此文字不會顯示出來
  • 至此,咱們把 vue模版指令 v-show 介紹了一遍,更多使用方法和信息,請參考 vue官方手冊

歡迎關注個人微信公衆號 ArthurSlog

ArthurSlog

若是你喜歡個人文章 歡迎點贊 留言

謝謝

相關文章
相關標籤/搜索