【发布时间】:2022-01-09 12:13:45
【问题描述】:
嗨,黑客和帅哥:
关注这篇文章Ionic full screen background image。我猜是vue特有的bug。
代码:
background_image_sample.vue
<template>
<ion-page>
<ion-content>
<h1>background_image_sample Page2</h1>
</ion-content>
</ion-page>
</template>
<script>
import { IonPage, IonContent } from "@ionic/vue";
import './background_image_sample.css';
export default {
components: {
IonPage,
IonContent,
},
};
</script>
background_image_sample.css
ion-content {
--background: url('./assets/background.png') 0 0/100% 100% no-repeat
}
云环境:codesandbox
【问题讨论】:
标签: css image vue.js ionic-framework