建立一個全新的專案:
然後在設定一下,微信小程式的 AppId,直接去之前的專案中拷貝一下即可,找到之前專案的 manifest.json
檔案,然後選擇微信小程式設定,複製一下即可:
<template>
<view>
<view>我是view元件</view>
</view>
</template>
<script>
// index.vue
export default {}
</script>
<template>
<view>
<text>我是text元件</text>
</view>
</template>
<script>
// index.vue
export default {}
</script>
<template>
<view>
<button type="default">default button</button>
<button type="primary">primary button</button>
<button type="warn">warn button</button>
</view>
</template>
<script>
// index.vue
export default {}
</script>
注意點:
不推薦
,因為 HTML 元素 UniApp 是沒有做適配的,可能在不同平臺上執行會出現未知問題
- 來看一下注意點的第一點,
執行在不同平臺上會自動轉換成對應平臺的元件
,在演示 button 元件的時候我們編寫了<button type="primary">primary button</button>
這麼一行程式碼,但是在 H5 執行顯示的是藍色
<template>
<view>
<!--
圖片素材大家自行去替換自己的
-->
<!--
相對路徑
-->
<image src="../../static/01.jpg"/>
<!--
絕對路徑
-->
<image src="@/static/01.jpg"/>
</view>
</template>
<script>
// index.vue
export default {}
</script>
<template>
<view>
<scroll-view class="scrollViewByThis" scroll-y="true">
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
<view>A</view>
</scroll-view>
</view>
</template>
<script>
// index.vue
export default {}
</script>
<style lang="scss" scoped>
.scrollViewByThis {
width: 100%;
height: 150rpx;
border: 1px solid red;
}
</style>
注意點:
<template>
<view>
<swiper>
<swiper-item>
<view>A</view>
</swiper-item>
<swiper-item>
<view>B</view>
</swiper-item>
<swiper-item>
<view>C</view>
</swiper-item>
</swiper>
</view>
</template>
<script>
// index.vue
export default {}
</script>
indicator-dots
屬性來控制的,給 swiper 元件新增 indicator-dots
屬性即可<template>
<view>
<swiper indicator-dots="true">
<swiper-item>
<view>A</view>
</swiper-item>
<swiper-item>
<view>B</view>
</swiper-item>
<swiper-item>
<view>C</view>
</swiper-item>
</swiper>
</view>
</template>
<script>
// index.vue
export default {}
</script>
大家好我是 BNTang, 一個熱愛分享的技術的開發者,如果大家覺得我的文章對你有幫助的話,可以關注我的公眾號 JavaBoyL
,我會在公眾號中分享一些IT技術和一些個人的見解,謝謝大家的支援。