mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
37 lines
478 B
Vue
37 lines
478 B
Vue
<!-- home -->
|
|
<template>
|
|
<div>
|
|
<h1>home</h1>
|
|
<van-button type="primary">主要按钮</van-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
Button
|
|
} from 'vant'
|
|
export default {
|
|
components: {
|
|
'van-button': Button
|
|
},
|
|
|
|
data() {
|
|
return {}
|
|
},
|
|
|
|
computed: {},
|
|
|
|
mounted() {},
|
|
|
|
methods: {}
|
|
}
|
|
|
|
</script>
|
|
<style lang='scss' scoped>
|
|
h1 {
|
|
background: red;
|
|
width: 375px;
|
|
}
|
|
|
|
</style>
|