Skip to content

Commit

Permalink
fix(popup-title-bar): vue与[email protected]以上版本报错
Browse files Browse the repository at this point in the history
  • Loading branch information
verynong committed Feb 28, 2023
1 parent 480e25e commit a63a5e0
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

0 comments on commit a63a5e0

Please sign in to comment.