Vue to achieve the announcement article text from left to right cycle scrolling effect how to do?

is it possible to simply use Vue without operating DOM?

Mar.10,2021

is implemented through transform. The style, of binding a transform for an element is as follows:

<p :style="{transform: `translate(${trans}px)`} ">testtest

then move the text by changing the value of trasform, as follows:

<script>
export default {
   data: function () {
     trans: 0
   },
   mount: function () {
      this.move(this.translate)
   },
   methods: {
     move: function (value) {
     // 
     }
   }
}
</script>
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b39598-4d825.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b39598-4d825.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?