Slog23_支配vue框架模版語法之v-once

  • ArthurSlog
  • SLog-23
  • Year·1
  • Guangzhou·China
  • July 22th 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-once.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">
            <button v-on:click="counter += 1">Add 1</button>
            <p v-once>The button above has been clicked {{ counter }} times.</p>
        </div>
        <script>
        new Vue({
            el: '#app',
            data: {
                counter: 0
            }
        })
        </script>
    </body>
</html>
  • 咱們引用上面的代碼,在標籤 < p > 裏使用 v-once 指令,打開瀏覽器,地址欄輸入 127.0.0.1:3000/v-once.html,而後你點擊 「Add 1」 按鈕,你會發現文本不會再變化了,這是由於 once 僅渲染元素和組件一次。在隨後的從新渲染中,元素/組件及其全部子元素將被視爲靜態內容並被跳過,這是用來用於優化更新性能的
  • 至此,咱們把 vue模版指令 v-once 介紹了一遍,更多使用方法和信息,請參考 vue官方手冊

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

ArthurSlog

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

謝謝

相關文章
相關標籤/搜索