123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="my_toast">
- <!-- 提示 -->
- <p>
- {{ ntoast }}
- </p>
- </div>
- </template>
- <script>
- export default{
- data(){
- props:{
- ntoast:String
- }
- }
- }
- </script>
-
- <style>
- .my_toast{
- text-align: center;
- }
- .my_toast p{
- padding: 4px 8px;
- border-radius: 4px;
- background-color: rgba(0, 0, 0, .6);
- font-size: 12px;
- color: #fff;
- }
- </style>
|