我想使用长按手势移动StackLayout。我的想法是通过更改对象的位置来移动StackLayout。我想要得到的结果是,长按标签后,我可以将其移动到StackLayout上的其他位置。
<StackLayout orientation="horizontal" class="items">
<StackLayout orientation="horizontal" class="item" @longPress="itemPress()">
</StackLayout>
</StackLayout>
脚本:
export default {
data() {
return {
};
},
methods: {
itemPress(){
alert("longpress");
//stuff...
},
}