Top Stories published by Hybrid Maker in 2016

Jmeter 壓力測試 錄製教學

下載 Jmeter 以及開啟

apache jmeter 網站下載最新的 zip 壓縮包,解壓縮之後用命令視窗進入資料夾內,輸入 sh jmeter 開啟

windows 使用者要使用 jmeter.bat 開啟

[Vue.js 教學] 3. 實作第一個元件(計數器)

上一篇已經說過有關於 Vue 元件的構造,本篇我們就來動手做出第一個元件計數器出來,首先我們預計要有一個按鈕,負責增加數量,一個顯示的區域來顯示按下去的數量

  1. 新增一個檔案src\components\Counter.vue我們先把按鈕跟顯示的區域放到 template 區塊裡面,並連結上data
<template>
<div>
{{count}}
</div>
<button>Click Me</button>

[Vue.js 教學] 介紹 Vue js

介紹 vue 是什麼

vue 是一套前端框架,支援樣板、資料綁定,容量小,速度快,在 todo mvc branchmark 上面的測試報告來看甚至比 react or angular 還要快。


[Vue.js 教學] 2. 認識元件(Component)

上一篇文章,我們製作出了第一個 Vue.js 專案,現在我們就來介紹 Vue 的 component 長怎樣

首先我們打開專案資料夾的檔案 test_project/src/components/Hello.vue

<template>
<div class="hello">
<h1>{{ msg }}</h1>
</div>
</template>

These were the top 10 stories published by Hybrid Maker in 2016. You can also dive into monthly archives for 2016 by using the calendar at the top of this page.