mirror of
https://github.com/caojiezi2003/clock-shop.git
synced 2025-04-04 09:07:31 +00:00
28 lines
627 B
Vue
28 lines
627 B
Vue
<template>
|
|
<div id="banner" class="section-padding">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="jumbotron">
|
|
<h1 class="small">Welcome To <span class="bold">Clock Shop</span></h1>
|
|
<p class="big">There are a variety of beautiful and unusual clock codes.</p>
|
|
<a href="#" class="btn btn-banner">Star Me<i class="fa fa-send"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Banner',
|
|
props: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped>
|
|
|
|
</style>
|