You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
768 B
47 lines
768 B
<template> |
|
<div class="Test"> |
|
<base-button type="primary" @click="t = true">test</base-button> |
|
<ShareToFriend v-model="t"/> |
|
</div> |
|
</template> |
|
<script> |
|
import ShareToFriend from "./home/components/ShareToFriend"; |
|
import BaseButton from "../components/BaseButton"; |
|
|
|
export default { |
|
name: "Test4", |
|
components: { |
|
BaseButton, |
|
ShareToFriend |
|
}, |
|
props: { |
|
text: { |
|
type: String, |
|
default: '@喵嗷污说电影创作的原声' |
|
} |
|
}, |
|
data() { |
|
return { |
|
t: false, |
|
} |
|
}, |
|
methods: {}, |
|
mounted() { |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="less"> |
|
@import "../assets/scss/index"; |
|
|
|
.Test { |
|
position: fixed; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
top: 0; |
|
overflow: auto; |
|
font-size: 1.4rem; |
|
color: white; |
|
} |
|
</style>
|
|
|