You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
412 B
Vue
30 lines
412 B
Vue
<script>
|
|
|
|
export default {
|
|
onLaunch: function() {
|
|
|
|
},
|
|
onShow: function() {
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import url("./static/css/reset.css");
|
|
/* 解决头条小程序组件内引入字体不生效的问题 */
|
|
/* #ifdef MP-TOUTIAO */
|
|
@font-face {
|
|
font-family: uniicons;
|
|
src: url('/static/uni.ttf');
|
|
}
|
|
/* #endif */
|
|
@import "uview-ui/index.scss";
|
|
|
|
|
|
|
|
|
|
</style>
|