Skip to content

Commit

Permalink
Merge pull request #826 from verynong/fix_popup-title-bar
Browse files Browse the repository at this point in the history
fix(popup-title-bar): vue与[email protected]以上版本报错
  • Loading branch information
qifeng0748 authored Mar 29, 2023
2 parents ff44296 + a63a5e0 commit 51192ac
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions components/popup/title-bar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
class="md-popup-title-bar"
:class="[
`title-align-${titleAlign}`,
...{large: !!describe, 'large-radius': largeRadius}
{
large: !!describe,
'large-radius': largeRadius
}
]"
@touchmove="$_preventScroll"
>
Expand Down Expand Up @@ -74,7 +77,8 @@
</div>
</template>

<script>import titleBarMixin from './mixins/title-bar'
<script>
import titleBarMixin from './mixins/title-bar'
import Icon from '../icon'
export default {
Expand Down Expand Up @@ -130,7 +134,8 @@ export default {
},
},
}
</script>
</script>

<style lang="stylus" scoped>
.md-popup-title-bar
Expand Down

1 comment on commit 51192ac

@Yonina11-code
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.