16 lines
167 B
Vue
16 lines
167 B
Vue
<template>
|
|
<view>
|
|
<productsBtn :type="2"></productsBtn>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
type: '',
|
|
}
|
|
}
|
|
}
|
|
</script>
|