index.vue 230 B

1234567891011
  1. <script lang="ts" setup>
  2. import { onMounted, ref } from 'vue'
  3. const isFixed = ref(true)
  4. onMounted(() => {})
  5. </script>
  6. <template>
  7. <van-nav-bar title="购物车" :fixed="isFixed" />
  8. </template>
  9. <style scoped lang="scss"></style>