mirror of
https://github.com/vuejs/vue.git
synced 2024-11-22 04:39:46 +00:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Vue.js commits example</title>
|
|
<style>
|
|
#demo {
|
|
font-family: 'Helvetica', Arial, sans-serif;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #f66;
|
|
}
|
|
li {
|
|
line-height: 1.5em;
|
|
margin-bottom: 20px;
|
|
}
|
|
.author, .date {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
<script src="../../dist/vue.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="demo">
|
|
<h1>Latest Vue.js Commits</h1>
|
|
<template v-for="branch in branches">
|
|
<input type="radio"
|
|
:id="branch"
|
|
:value="branch"
|
|
name="branch"
|
|
v-model="currentBranch">
|
|
<label :for="branch">{{branch}}</label>
|
|
</template>
|
|
<p>vuejs/vue@{{currentBranch}}</p>
|
|
<ul>
|
|
<li v-for="record in commits">
|
|
<a :href="record.html_url" target="_blank" class="commit">{{record.sha.slice(0, 7)}}</a>
|
|
- <span class="message">{{truncate(record.commit.message)}}</span><br>
|
|
by <span class="author"><a :href="record.author.html_url" target="_blank">{{record.commit.author.name}}</a></span>
|
|
at <span class="date">{{formatDate(record.commit.author.date)}}</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|