Slog11_支配vue框架模版语法之v-text

2018-08-24  本文已影响10人  ArthurSlog_
关注微信公众号“ArthurSlog”

一个瘦小的男孩 从小失去父母 但一只小鸟每天在他窗前说 你是世上最高大威猛的男人 男孩长大后 真的成了小鸟所说的高大威猛的人 当上将军拯救了国家


开发环境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

开始编码

cd ~/Desktop

mkdir node_vue_directive_learningload

cd node_vue_directive_learningload

npm init

sudo npm install koa koa-static

index.js

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.html

<!DOCTYPE html>
<html>

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

<body>

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

</body>

</html>

v-text.html

<!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">
        <span v-text="message"></span>

        <!-- v-text="message" 等同于 {{message}} -->
        <span>{{message}}</span>
    </div>

    <script>
        new Vue({
            el: '#app',
            data: {
                message: 'Hello ArthurSlog! \n' //噢~这里换行符 “\n” 无效
            }
        })
    </script>

</body>

</html>

node index.js


欢迎关注我的微信公众号 ArthurSlog

关注微信公众号“ArthurSlog”

如果你喜欢我的文章 欢迎点赞 留言

谢谢

上一篇下一篇

猜你喜欢

热点阅读